mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
3d76c9f5e0
The missing include directory caused a W=1 warning that can be trivially fixed. I also noticed references in the marvell.rst documentation that can be removed at the same time. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
34 lines
975 B
Makefile
34 lines
975 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for Marvell's PXA168 processors line
|
|
#
|
|
obj-y += common.o devices.o time.o
|
|
|
|
# SoC support
|
|
obj-$(CONFIG_CPU_PXA168) += pxa168.o
|
|
obj-$(CONFIG_CPU_PXA910) += pxa910.o
|
|
obj-$(CONFIG_CPU_MMP2) += mmp2.o
|
|
obj-$(CONFIG_MMP_SRAM) += sram.o
|
|
|
|
ifeq ($(CONFIG_PM),y)
|
|
obj-$(CONFIG_CPU_PXA910) += pm-pxa910.o
|
|
obj-$(CONFIG_CPU_MMP2) += pm-mmp2.o
|
|
endif
|
|
ifeq ($(CONFIG_SMP),y)
|
|
obj-$(CONFIG_MACH_MMP3_DT) += platsmp.o
|
|
endif
|
|
|
|
# board support
|
|
obj-$(CONFIG_MACH_ASPENITE) += aspenite.o
|
|
obj-$(CONFIG_MACH_ZYLONITE2) += aspenite.o
|
|
obj-$(CONFIG_MACH_AVENGERS_LITE)+= avengers_lite.o
|
|
obj-$(CONFIG_MACH_TTC_DKB) += ttc_dkb.o
|
|
obj-$(CONFIG_MACH_BROWNSTONE) += brownstone.o
|
|
obj-$(CONFIG_MACH_FLINT) += flint.o
|
|
obj-$(CONFIG_MACH_MARVELL_JASPER) += jasper.o
|
|
obj-$(CONFIG_MACH_MMP_DT) += mmp-dt.o
|
|
obj-$(CONFIG_MACH_MMP2_DT) += mmp2-dt.o
|
|
obj-$(CONFIG_MACH_MMP3_DT) += mmp3.o
|
|
obj-$(CONFIG_MACH_TETON_BGA) += teton_bga.o
|
|
obj-$(CONFIG_MACH_GPLUGD) += gplugd.o
|