mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
cae19b5902
This code was added for some ancient SH-4 solution engines with peculiar boot ROMs that did silly things to the UBC MSTP bits. None of these have been in the wild for years, and these days the clock framework wraps up the MSTP bits, meaning that the UBC code is one of the few interfaces that is stomping MSTP bits underneath the clock framework. At this point the risks far outweigh any benefit this code provided, so just kill it off. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
22 lines
456 B
Makefile
22 lines
456 B
Makefile
#
|
|
# Makefile for the Linux/SuperH CPU-specifc backends.
|
|
#
|
|
|
|
obj-$(CONFIG_CPU_SH2) = sh2/
|
|
obj-$(CONFIG_CPU_SH2A) = sh2a/
|
|
obj-$(CONFIG_CPU_SH3) = sh3/
|
|
obj-$(CONFIG_CPU_SH4) = sh4/
|
|
obj-$(CONFIG_CPU_SH5) = sh5/
|
|
|
|
# Special cases for family ancestry.
|
|
|
|
obj-$(CONFIG_CPU_SH4A) += sh4a/
|
|
obj-$(CONFIG_ARCH_SHMOBILE) += shmobile/
|
|
|
|
# Common interfaces.
|
|
|
|
obj-$(CONFIG_SH_ADC) += adc.o
|
|
obj-$(CONFIG_SH_CLK_CPG) += clock-cpg.o
|
|
|
|
obj-y += irq/ init.o clock.o hwblk.o
|