Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

bus: uniphier-system-bus: use of_platform_default_populate() to populate default bus

Use helper of_platform_default_populate() in linux/of_platform
when possible, instead of calling of_platform_populate() with
the default match table.

Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Kefeng Wang and committed by
Rob Herring
2cf66924 39ec8d38

+1 -2
+1 -2
drivers/bus/uniphier-system-bus.c
··· 257 257 uniphier_system_bus_set_reg(priv); 258 258 259 259 /* Now, the bus is configured. Populate platform_devices below it */ 260 - return of_platform_populate(dev->of_node, of_default_bus_match_table, 261 - NULL, dev); 260 + return of_platform_default_populate(dev->of_node, NULL, dev); 262 261 } 263 262 264 263 static const struct of_device_id uniphier_system_bus_match[] = {