mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-12 15:25:05 +07:00
![Paul Mundt](/assets/img/avatar_default.png)
This moves the various IRQ controller drivers into a new subdirectory, and also extends the INTC2 IRQ handler to also deal with SH7760 and SH7780 interrupts, rather than just ST-40. The old CONFIG_SH_GENERIC has also been removed from the IRQ definitions, as new ports are expected to be based off of CONFIG_SH_UNKNOWN. Since there are plenty of incompatible machvecs, CONFIG_SH_GENERIC doesn't make sense anymore. Signed-off-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
14 lines
285 B
Makefile
14 lines
285 B
Makefile
#
|
|
# Makefile for the Linux/SuperH CPU-specifc backends.
|
|
#
|
|
|
|
obj-y += irq/ init.o bus.o clock.o
|
|
|
|
obj-$(CONFIG_CPU_SH2) += sh2/
|
|
obj-$(CONFIG_CPU_SH3) += sh3/
|
|
obj-$(CONFIG_CPU_SH4) += sh4/
|
|
|
|
obj-$(CONFIG_SH_RTC) += rtc.o
|
|
obj-$(CONFIG_UBC_WAKEUP) += ubc.o
|
|
obj-$(CONFIG_SH_ADC) += adc.o
|