mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
b633648c5a
Nobody is maintaining SMTC anymore and there also seems to be no userbase. Which is a pity - the SMTC technology primarily developed by Kevin D. Kissell <kevink@paralogos.com> is an ingenious demonstration for the MT ASE's power and elegance. Based on Markos Chandras <Markos.Chandras@imgtec.com> patch https://patchwork.linux-mips.org/patch/6719/ which while very similar did no longer apply cleanly when I tried to merge it plus some additional post-SMTC cleanup - SMTC was a feature as tricky to remove as it was to merge once upon a time. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
13 lines
418 B
Makefile
13 lines
418 B
Makefile
#
|
|
# Makefile for the PMC-Sierra MSP SOCs
|
|
#
|
|
obj-y += msp_prom.o msp_setup.o msp_irq.o \
|
|
msp_time.o msp_serial.o msp_elb.o
|
|
obj-$(CONFIG_PMC_MSP7120_GW) += msp_hwbutton.o
|
|
obj-$(CONFIG_IRQ_MSP_SLP) += msp_irq_slp.o
|
|
obj-$(CONFIG_IRQ_MSP_CIC) += msp_irq_cic.o msp_irq_per.o
|
|
obj-$(CONFIG_PCI) += msp_pci.o
|
|
obj-$(CONFIG_MSP_HAS_MAC) += msp_eth.o
|
|
obj-$(CONFIG_MSP_HAS_USB) += msp_usb.o
|
|
obj-$(CONFIG_MIPS_MT_SMP) += msp_smp.o
|