diff options
| author | Anup Patel <[email protected]> | 2020-05-12 13:59:52 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2020-05-23 10:36:33 +0530 |
| commit | 2c685c214f2815c12f9d70422d85daa7f48003cf (patch) | |
| tree | f21b5548140c59fe843cc2caa2e444e456ca2474 /lib/utils/reset/fdt_reset.c | |
| parent | 446a9c6d1eb97fcedd6a94ac76d15e941a6087a8 (diff) | |
lib: utils: Extend fdt_find_match() Implementation
We extend fdt_find_match() implementation by adding node offset
parameter which represents the first node to match from.
The improved fdt_find_match() can be used to find multiple
match nodes.
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Atish Patra <[email protected]>
Diffstat (limited to 'lib/utils/reset/fdt_reset.c')
| -rw-r--r-- | lib/utils/reset/fdt_reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/reset/fdt_reset.c b/lib/utils/reset/fdt_reset.c index 98fbb549..dfbd33ef 100644 --- a/lib/utils/reset/fdt_reset.c +++ b/lib/utils/reset/fdt_reset.c @@ -38,7 +38,7 @@ int fdt_reset_init(void) for (pos = 0; pos < array_size(reset_drivers); pos++) { drv = reset_drivers[pos]; - noff = fdt_find_match(fdt, drv->match_table, &match); + noff = fdt_find_match(fdt, -1, drv->match_table, &match); if (noff < 0) continue; |
