mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 02:36:42 +07:00
cdb4acc056
PMU is not tested and enabled on MMP architecture at this moment, the device IRQ number, IRQ_PMU depends on ARCH_PXA. Build PMU only for ARCH_PXA. Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
14 lines
288 B
Makefile
14 lines
288 B
Makefile
#
|
|
# Makefile for code common across different PXA processor families
|
|
#
|
|
|
|
obj-y := dma.o
|
|
|
|
obj-$(CONFIG_ARCH_PXA) += pmu.o
|
|
obj-$(CONFIG_GENERIC_GPIO) += gpio.o
|
|
obj-$(CONFIG_PXA3xx) += mfp.o
|
|
obj-$(CONFIG_ARCH_MMP) += mfp.o
|
|
|
|
obj-$(CONFIG_HAVE_PWM) += pwm.o
|
|
obj-$(CONFIG_PXA_SSP) += ssp.o
|