From: Masahiro Yamada Date: Mon, 13 Jul 2015 04:17:16 +0000 (+0900) Subject: dm: remove redundant CONFIG_DM from driver/core/Makefile X-Git-Tag: v2015.10-rc1~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=04c5ee41b2ff00d396033bcac676be83a4e51468;p=platform%2Fkernel%2Fu-boot.git dm: remove redundant CONFIG_DM from driver/core/Makefile As you see in driver/Makefile, Kbuild descends into the driver/core/ directory only when CONFIG_DM is enabled. Signed-off-by: Masahiro Yamada Acked-by: Simon Glass --- diff --git a/drivers/core/Makefile b/drivers/core/Makefile index 54d57e5..5c2ead8 100644 --- a/drivers/core/Makefile +++ b/drivers/core/Makefile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_DM) += device.o lists.o root.o uclass.o util.o +obj-y += device.o lists.o root.o uclass.o util.o ifndef CONFIG_SPL_BUILD obj-$(CONFIG_OF_CONTROL) += simple-bus.o endif