nds32: fix build error "relocation truncated to fit: R_NDS32_25_PCREL_RELA" when
[linux-2.6-microblaze.git] / drivers / base / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for the Linux device tree
3
4 obj-y                   := component.o core.o bus.o dd.o syscore.o \
5                            driver.o class.o platform.o \
6                            cpu.o firmware.o init.o map.o devres.o \
7                            attribute_container.o transport_class.o \
8                            topology.o container.o property.o cacheinfo.o \
9                            devcon.o
10 obj-$(CONFIG_DEVTMPFS)  += devtmpfs.o
11 obj-$(CONFIG_DMA_CMA) += dma-contiguous.o
12 obj-y                   += power/
13 obj-$(CONFIG_HAS_DMA)   += dma-mapping.o
14 obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o
15 obj-$(CONFIG_ISA_BUS_API)       += isa.o
16 obj-y                           += firmware_loader/
17 obj-$(CONFIG_NUMA)      += node.o
18 obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o
19 ifeq ($(CONFIG_SYSFS),y)
20 obj-$(CONFIG_MODULES)   += module.o
21 endif
22 obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o
23 obj-$(CONFIG_REGMAP)    += regmap/
24 obj-$(CONFIG_SOC_BUS) += soc.o
25 obj-$(CONFIG_PINCTRL) += pinctrl.o
26 obj-$(CONFIG_DEV_COREDUMP) += devcoredump.o
27 obj-$(CONFIG_GENERIC_MSI_IRQ_DOMAIN) += platform-msi.o
28 obj-$(CONFIG_GENERIC_ARCH_TOPOLOGY) += arch_topology.o
29
30 obj-y                   += test/
31
32 ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
33