mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 01:16:42 +07:00
415c947435
The irq fixup from at91_sysirq_mask_rtc and at91_sysirq_mask_rtt is now handled by aic_common_rtc_irq_fixup and aic_common_rtt_irq_fixup. Remove those useless functions. Also remove the now unused mach/at91_rtt.h header. Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
35 lines
947 B
Makefile
35 lines
947 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.o at91rm9200_time.o
|
|
obj-$(CONFIG_SOC_AT91SAM9260) += at91sam9260.o
|
|
obj-$(CONFIG_SOC_AT91SAM9261) += at91sam9261.o
|
|
obj-$(CONFIG_SOC_AT91SAM9263) += at91sam9263.o
|
|
obj-$(CONFIG_SOC_AT91SAM9G45) += at91sam9g45.o
|
|
obj-$(CONFIG_SOC_AT91SAM9N12) += at91sam9n12.o
|
|
obj-$(CONFIG_SOC_AT91SAM9X5) += at91sam9x5.o
|
|
obj-$(CONFIG_SOC_AT91SAM9RL) += at91sam9rl.o
|
|
obj-$(CONFIG_SOC_SAMA5D3) += sama5d3.o
|
|
obj-$(CONFIG_SOC_SAMA5D4) += sama5d4.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
|