X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=drivers%2Fcore%2FMakefile;h=bce7467da1d11de804e3c1a6fdc0be40e4811fd6;hb=83d290c56fab2d38cd1ab4c4cc7099559c1d5046;hp=c7905b14409fcf4fe56653655960de8407c5348b;hpb=3cc83f9d08a80fddf4c1e8e766eff8273f30814c;p=platform%2Fkernel%2Fu-boot.git diff --git a/drivers/core/Makefile b/drivers/core/Makefile index c7905b1..bce7467 100644 --- a/drivers/core/Makefile +++ b/drivers/core/Makefile @@ -1,7 +1,18 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (c) 2013 Google, Inc -# -# SPDX-License-Identifier: GPL-2.0+ -# -obj-y := device.o lists.o root.o uclass.o util.o +obj-y += device.o fdtaddr.o lists.o root.o uclass.o util.o +obj-$(CONFIG_DEVRES) += devres.o +obj-$(CONFIG_$(SPL_)DM_DEVICE_REMOVE) += device-remove.o +obj-$(CONFIG_$(SPL_)SIMPLE_BUS) += simple-bus.o +obj-$(CONFIG_DM) += dump.o +obj-$(CONFIG_$(SPL_TPL_)REGMAP) += regmap.o +obj-$(CONFIG_$(SPL_TPL_)SYSCON) += syscon-uclass.o +obj-$(CONFIG_OF_LIVE) += of_access.o of_addr.o +ifndef CONFIG_DM_DEV_READ_INLINE +obj-$(CONFIG_OF_CONTROL) += read.o +endif +obj-$(CONFIG_OF_CONTROL) += of_extra.o ofnode.o read_extra.o + +ccflags-$(CONFIG_DM_DEBUG) += -DDEBUG