mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-28 21:45:01 +08:00
59fd3033b5
Several configurations are selecting errata 798181 without SMP being selected. This causes a warning from Kconfig: warning: (ARCH_HIGHBANK && ARCH_KEYSTONE && SOC_OMAP5 && ARCH_TEGRA_114_SOC) selects ARM_ERRATA_798181 which has unmet direct dependencies (CPU_V7 && SMP) The dependencies are compile time dependencies; select violates these, resulting in: arch/arm/kernel/built-in.o: In function `setup_processor': psci.c:(.init.text+0x808): undefined reference to `erratum_a15_798181_init' at build time. Fix this by fixing the select statements for Tegra and Highbank. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
27 lines
653 B
Plaintext
27 lines
653 B
Plaintext
config ARCH_HIGHBANK
|
|
bool "Calxeda ECX-1000/2000 (Highbank/Midway)" if ARCH_MULTI_V7
|
|
select ARCH_DMA_ADDR_T_64BIT if ARM_LPAE
|
|
select ARCH_HAS_CPUFREQ
|
|
select ARCH_HAS_HOLES_MEMORYMODEL
|
|
select ARCH_HAS_OPP
|
|
select ARCH_WANT_OPTIONAL_GPIOLIB
|
|
select ARM_AMBA
|
|
select ARM_ERRATA_764369
|
|
select ARM_ERRATA_775420
|
|
select ARM_ERRATA_798181 if SMP
|
|
select ARM_GIC
|
|
select ARM_TIMER_SP804
|
|
select CACHE_L2X0
|
|
select CLKDEV_LOOKUP
|
|
select COMMON_CLK
|
|
select CPU_V7
|
|
select GENERIC_CLOCKEVENTS
|
|
select HAVE_ARM_SCU
|
|
select HAVE_ARM_TWD if SMP
|
|
select HAVE_SMP
|
|
select MAILBOX
|
|
select PL320_MBOX
|
|
select SPARSE_IRQ
|
|
select USE_OF
|
|
select ZONE_DMA if ARM_LPAE
|