Minor coding style cleanup.

Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Wolfgang Denk 2008-01-02 12:38:43 +01:00
parent feaa43f3a8
commit 3dfd708cc1

View File

@ -544,7 +544,7 @@ int fdt_parent_offset(const void *fdt, int nodeoffset);
* offset = fdt_node_offset_by_prop_value(fdt, -1, propname, * offset = fdt_node_offset_by_prop_value(fdt, -1, propname,
* propval, proplen); * propval, proplen);
* while (offset != -FDT_ERR_NOTFOUND) { * while (offset != -FDT_ERR_NOTFOUND) {
* // other code here * /* other code here */
* offset = fdt_node_offset_by_prop_value(fdt, offset, propname, * offset = fdt_node_offset_by_prop_value(fdt, offset, propname,
* propval, proplen); * propval, proplen);
* } * }
@ -629,7 +629,7 @@ int fdt_node_check_compatible(const void *fdt, int nodeoffset,
* idiom can be used: * idiom can be used:
* offset = fdt_node_offset_by_compatible(fdt, -1, compatible); * offset = fdt_node_offset_by_compatible(fdt, -1, compatible);
* while (offset != -FDT_ERR_NOTFOUND) { * while (offset != -FDT_ERR_NOTFOUND) {
* // other code here * /* other code here */
* offset = fdt_node_offset_by_compatible(fdt, offset, compatible); * offset = fdt_node_offset_by_compatible(fdt, offset, compatible);
* } * }
* *