simple-bus: enable support for of-platdata
Just do nothing in post_bind if of-platdata enabled, for there is no dm_scan_fdt_dev(). Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Simon Glass <sjg@chromium.org> Fixed subject line typo: Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e160f7d430
commit
6943ee14e5
@ -27,6 +27,9 @@ fdt_addr_t simple_bus_translate(struct udevice *dev, fdt_addr_t addr)
|
||||
|
||||
static int simple_bus_post_bind(struct udevice *dev)
|
||||
{
|
||||
#if CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
return 0;
|
||||
#else
|
||||
u32 cell[3];
|
||||
int ret;
|
||||
|
||||
@ -41,6 +44,7 @@ static int simple_bus_post_bind(struct udevice *dev)
|
||||
}
|
||||
|
||||
return dm_scan_fdt_dev(dev);
|
||||
#endif
|
||||
}
|
||||
|
||||
UCLASS_DRIVER(simple_bus) = {
|
||||
|
Loading…
Reference in New Issue
Block a user