mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
340d013358
There are two tavorevb boards in the kernel, one using a PXA930 chip in mach-pxa, and one using the later PXA910 chip in mach-mmp. They use the same board number, which is generally a bad idea, and in a multiplatform kernel, we can end up with funny link errors like this one resulting from two boards gettting controlled by the same Kconfig symbol: arch/arm/mach-mmp/tavorevb.o: In function `tavorevb_init': tavorevb.c:(.init.text+0x4c): undefined reference to `pxa910_device_uart1' tavorevb.c:(.init.text+0x50): undefined reference to `pxa910_device_gpio' tavorevb.o:(.arch.info.init+0x54): undefined reference to `pxa910_init_irq' tavorevb.o:(.arch.info.init+0x58): undefined reference to `pxa910_timer_init' The mach-pxa TavorEVB seems much more complete than the mach-mmp one that supports only uart, gpio and ethernet. Further, I could find no information about the board on the internet aside from references to the Linux kernel, so I assume this was never available outside of Marvell and can be removed entirely. There is a third board named TavorEVB in the Kconfig description, but this refers to the "TTC_DKB" machine. The two are clearly related, so I change the Kconfig description to just list both names. Cc: Lubomir Rintel <lkundrak@v3.sk> Reviewed-by: Lubomir Rintel <lkundrak@v3.sk> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for Marvell's PXA168 processors line
|
|
#
|
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/arch/arm/plat-pxa/include
|
|
|
|
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
|