diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-04 11:29:37 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-22 10:36:56 -0600 |
commit | da802b9e2726c7467e0b402efeb6ad3d975f1282 (patch) | |
tree | 58d17374f4fbe3ff045b5901563a9c4bdb85d408 /drivers/core/Makefile | |
parent | 3f0e935f2250110990875159552e1ff7eb7da39d (diff) | |
download | u-boot-da802b9e2726c7467e0b402efeb6ad3d975f1282.tar.gz |
dm: core: Add support for simple-bus
Add a driver for the simple-bus nodes, which allows devices within these
nodes to be bound.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core/Makefile')
-rw-r--r-- | drivers/core/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/core/Makefile b/drivers/core/Makefile index c7905b1440..151c2398a4 100644 --- a/drivers/core/Makefile +++ b/drivers/core/Makefile @@ -5,3 +5,4 @@ # obj-y := device.o lists.o root.o uclass.o util.o +obj-$(CONFIG_OF_CONTROL) += simple-bus.o |