Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: tegra: Move AHB Kconfig to drivers/amba

This will allow the Kconfig option to be shared among 32-bit and 64-bit
ARM.

Signed-off-by: Thierry Reding <treding@nvidia.com>

+15 -8
+1 -8
arch/arm/mach-tegra/Kconfig
··· 2 2 bool "NVIDIA Tegra" if ARCH_MULTI_V7 3 3 select ARCH_REQUIRE_GPIOLIB 4 4 select ARCH_SUPPORTS_TRUSTED_FOUNDATIONS 5 + select ARM_AMBA 5 6 select ARM_GIC 6 7 select CLKSRC_MMIO 7 8 select HAVE_ARM_SCU if SMP ··· 59 58 help 60 59 Support for NVIDIA Tegra T124 processor family, based on the 61 60 ARM CortexA15MP CPU 62 - 63 - config TEGRA_AHB 64 - bool "Enable AHB driver for NVIDIA Tegra SoCs" 65 - default y 66 - help 67 - Adds AHB configuration functionality for NVIDIA Tegra SoCs, 68 - which controls AHB bus master arbitration and some 69 - performance parameters(priority, prefech size). 70 61 71 62 endif
+2
drivers/Kconfig
··· 1 1 menu "Device Drivers" 2 2 3 + source "drivers/amba/Kconfig" 4 + 3 5 source "drivers/base/Kconfig" 4 6 5 7 source "drivers/bus/Kconfig"
+12
drivers/amba/Kconfig
··· 1 1 config ARM_AMBA 2 2 bool 3 + 4 + if ARM_AMBA 5 + 6 + config TEGRA_AHB 7 + bool "Enable AHB driver for NVIDIA Tegra SoCs" 8 + default y if ARCH_TEGRA 9 + help 10 + Adds AHB configuration functionality for NVIDIA Tegra SoCs, 11 + which controls AHB bus master arbitration and some performance 12 + parameters (priority, prefetch size). 13 + 14 + endif