From: Wolfgang Denk Date: Wed, 2 Jan 2008 11:38:43 +0000 (+0100) Subject: Minor coding style cleanup. X-Git-Tag: v2025.01-rc5-pxa1908~22626^2~56 X-Git-Url: http://git.dujemihanovic.xyz/html/%7B%7B%20.RelPermalink%20%7D%7D?a=commitdiff_plain;h=3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc;p=u-boot.git Minor coding style cleanup. Signed-off-by: Wolfgang Denk --- diff --git a/include/libfdt.h b/include/libfdt.h index 6b2fb92ea3..8253ccffe1 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); * } *