diff options
Diffstat (limited to 'libfdt/fdt_wip.c')
| -rw-r--r-- | libfdt/fdt_wip.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/libfdt/fdt_wip.c b/libfdt/fdt_wip.c index 0db7d259f..261b9b0dc 100644 --- a/libfdt/fdt_wip.c +++ b/libfdt/fdt_wip.c @@ -68,12 +68,12 @@ int _fdt_node_end_offset(void *fdt, int nodeoffset)  	uint32_t tag;  	int offset, nextoffset; -	tag = _fdt_next_tag(fdt, nodeoffset, &nextoffset); +	tag = fdt_next_tag(fdt, nodeoffset, &nextoffset, NULL);  	if (tag != FDT_BEGIN_NODE)  		return -FDT_ERR_BADOFFSET;  	do {  		offset = nextoffset; -		tag = _fdt_next_tag(fdt, offset, &nextoffset); +		tag = fdt_next_tag(fdt, offset, &nextoffset, NULL);  		switch (tag) {  		case FDT_END: |