summaryrefslogtreecommitdiffstats
path: root/src/lib/device_tree.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-06-29 21:41:41 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-07-02 07:39:51 +0000
commite3e3f4f4ed4fee2f739806a81a7323fefe63e96d (patch)
tree56fe3cdaa378ed0e6719fb0b46ca6ec2fa73c110 /src/lib/device_tree.c
parent21b71ce66b89f7bff7959027d971e9a7786bf219 (diff)
downloadcoreboot-e3e3f4f4ed4fee2f739806a81a7323fefe63e96d.tar.gz
coreboot-e3e3f4f4ed4fee2f739806a81a7323fefe63e96d.tar.bz2
coreboot-e3e3f4f4ed4fee2f739806a81a7323fefe63e96d.zip
src: Get rid of unneeded whitespace
Change-Id: I3873cc8ff82cb043e4867a6fe8c1f253ab18714a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27295 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/lib/device_tree.c')
-rw-r--r--src/lib/device_tree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/device_tree.c b/src/lib/device_tree.c
index 21916598c5e9..3d44f3937528 100644
--- a/src/lib/device_tree.c
+++ b/src/lib/device_tree.c
@@ -497,12 +497,12 @@ void dt_read_cell_props(struct device_tree_node *node, u32 *addrcp, u32 *sizecp)
*
* @param parent The node from which to start the relative path lookup.
* @param path An array of path component strings that will be looked
- * up in order to find the node. Must be terminated with
- * a NULL pointer. Example: {'firmware', 'coreboot', NULL}
+ * up in order to find the node. Must be terminated with
+ * a NULL pointer. Example: {'firmware', 'coreboot', NULL}
* @param addrcp Pointer that will be updated with any #address-cells
- * value found in the path. May be NULL to ignore.
+ * value found in the path. May be NULL to ignore.
* @param sizecp Pointer that will be updated with any #size-cells
- * value found in the path. May be NULL to ignore.
+ * value found in the path. May be NULL to ignore.
* @param create 1: Create node(s) if not found. 0: Return NULL instead.
* @return The found/created node, or NULL.
*/