From 9f56917ab88a6cf02574d0fcd92884edc517d0b4 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Tue, 1 Mar 2016 11:51:48 +0900 Subject: dm: core: make simple-bus compatible to simple-mfd Simple MFD devices can bind children without special bus configuration. Like Linux, let's handle "simple-mfd" in the same way as "simple-bus". Signed-off-by: Masahiro Yamada Acked-by: Simon Glass --- drivers/core/simple-bus.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/core') diff --git a/drivers/core/simple-bus.c b/drivers/core/simple-bus.c index 913c3ccc70..1a9c864ef3 100644 --- a/drivers/core/simple-bus.c +++ b/drivers/core/simple-bus.c @@ -53,6 +53,7 @@ UCLASS_DRIVER(simple_bus) = { static const struct udevice_id generic_simple_bus_ids[] = { { .compatible = "simple-bus" }, + { .compatible = "simple-mfd" }, { } }; -- cgit v1.2.1