Skip to content
Snippets Groups Projects
Commit 1182e9f8 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix compile problem introduced by "cleanup" commit 3dfd708c


Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent 1aaab9bf
No related branches found
No related tags found
No related merge requests found
......@@ -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);
* }
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment