aboutsummaryrefslogtreecommitdiff
path: root/include/libfdt.h
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-01-02 12:38:43 +0100
committerWolfgang Denk <wd@denx.de>2008-01-02 12:38:43 +0100
commit3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc (patch)
tree50d27659581068c3bca426e226c534b804977100 /include/libfdt.h
parentfeaa43f3a8f465cbf01ffa1b23b6b52431819a52 (diff)
Minor coding style cleanup.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/libfdt.h')
-rw-r--r--include/libfdt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libfdt.h b/include/libfdt.h
index 6b2fb92ea..8253ccffe 100644
--- a/include/libfdt.h
+++ b/include/libfdt.h
@@ -544,7 +544,7 @@ int fdt_parent_offset(const void *fdt, int nodeoffset);
* offset = fdt_node_offset_by_prop_value(fdt, -1, propname,
* propval, proplen);
* while (offset != -FDT_ERR_NOTFOUND) {
- * // other code here
+ * /* other code here */
* offset = fdt_node_offset_by_prop_value(fdt, offset, propname,
* propval, proplen);
* }
@@ -629,7 +629,7 @@ int fdt_node_check_compatible(const void *fdt, int nodeoffset,
* idiom can be used:
* offset = fdt_node_offset_by_compatible(fdt, -1, compatible);
* while (offset != -FDT_ERR_NOTFOUND) {
- * // other code here
+ * /* other code here */
* offset = fdt_node_offset_by_compatible(fdt, offset, compatible);
* }
*