diff options
author | 2019-03-25 14:51:27 +1100 | |
---|---|---|
committer | 2019-03-25 14:51:27 +1100 | |
commit | f67b47135523863c17a4af55d31de8f47d672834 (patch) | |
tree | 3f9a69371b7094f8308fb7157af5372dcb0357cf /libfdt/fdt_ro.c | |
parent | 54ea41c22415cb0e283d22faf71202051c89400c (diff) |
Revert "libfdt: Add phandle generation helper"
This reverts commit 54ea41c22415cb0e283d22faf71202051c89400c.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'libfdt/fdt_ro.c')
-rw-r--r-- | libfdt/fdt_ro.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c index 97cdcda..eafc142 100644 --- a/libfdt/fdt_ro.c +++ b/libfdt/fdt_ro.c @@ -170,37 +170,6 @@ uint32_t fdt_get_max_phandle(const void *fdt) return 0; } -int fdt_generate_phandle(const void *fdt, uint32_t *phandle) -{ - uint32_t max = 0; - int offset = -1; - - while (true) { - uint32_t value; - - offset = fdt_next_node(fdt, offset, NULL); - if (offset < 0) { - if (offset == -FDT_ERR_NOTFOUND) - break; - - return offset; - } - - value = fdt_get_phandle(fdt, offset); - - if (value > max) - max = value; - } - - if (max == FDT_MAX_PHANDLE) - return -FDT_ERR_NOPHANDLES; - - if (phandle) - *phandle = max + 1; - - return 0; -} - static const struct fdt_reserve_entry *fdt_mem_rsv(const void *fdt, int n) { int offset = n * sizeof(struct fdt_reserve_entry); |