forked from Minki/linux
edd942247f
at91_boot_soc and at91_init_soc structures are not used by any SoC, remove their use. Also remove all the now empty SoC files. Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> [nicolas.ferre@atmel.com: different organization of the patches] Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
26 lines
531 B
Makefile
26 lines
531 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
obj-y := setup.o
|
|
|
|
obj-$(CONFIG_SOC_AT91SAM9) += sam9_smc.o
|
|
|
|
# CPU-specific support
|
|
obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200_time.o
|
|
|
|
# AT91SAM board with device-tree
|
|
obj-$(CONFIG_SOC_AT91RM9200) += board-dt-rm9200.o
|
|
obj-$(CONFIG_SOC_AT91SAM9) += board-dt-sam9.o
|
|
|
|
# SAMA5 board with device-tree
|
|
obj-$(CONFIG_SOC_SAMA5) += board-dt-sama5.o
|
|
|
|
# Power Management
|
|
obj-$(CONFIG_PM) += pm.o
|
|
obj-$(CONFIG_AT91_SLOW_CLOCK) += pm_slowclock.o
|
|
|
|
ifeq ($(CONFIG_PM_DEBUG),y)
|
|
CFLAGS_pm.o += -DDEBUG
|
|
endif
|