On Fri, 30 Apr 2021 at 07:17, Bin Meng <bmeng...@gmail.com> wrote: > > In of_get_address(), there is: > > dev_count_cells(dev, &na, &ns); > > followed by: > > bus->count_cells(dev, &na, &ns); > > but no codes in between use na/ns, hence the first call is useless. > By dropping the first call, dev_count_cells() is now useless too. > > Signed-off-by: Bin Meng <bmeng...@gmail.com> > > --- > > Changes in v2: > - new patch: of: addr: Remove call to dev_count_cells() in of_get_address() > > drivers/core/of_addr.c | 6 ------ > 1 file changed, 6 deletions(-)
Reviewed-by: Simon Glass <s...@chromium.org> I wonder why this is now different from linux?