aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-10-02 08:57:43 -0400
committerThierry Reding <treding@nvidia.com>2014-11-26 03:43:24 -0500
commitd075f4a2b8b9b3531a00fa359fdc4c8eb3fad97b (patch)
tree3544fe67f79fbc84916ebbbb16b28555926bf99c
parent4f4f85fa0b96a35429ebb4bc278d70ae0f72113c (diff)
amba: Add Kconfig file
Rather than duplicate the ARM_AMBA Kconfig symbol in both 32-bit and 64-bit ARM architectures, move the common definition to drivers/amba where dependent drivers will be located. Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r--arch/arm/Kconfig3
-rw-r--r--arch/arm64/Kconfig3
-rw-r--r--drivers/amba/Kconfig2
3 files changed, 2 insertions, 6 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 89c4b5ccc68d..77f8ca5cc3e6 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1259,9 +1259,6 @@ source "arch/arm/common/Kconfig"
1259 1259
1260menu "Bus support" 1260menu "Bus support"
1261 1261
1262config ARM_AMBA
1263 bool
1264
1265config ISA 1262config ISA
1266 bool 1263 bool
1267 help 1264 help
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 9532f8d5857e..db1aa5446a57 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -166,9 +166,6 @@ endmenu
166 166
167menu "Bus support" 167menu "Bus support"
168 168
169config ARM_AMBA
170 bool
171
172config PCI 169config PCI
173 bool "PCI support" 170 bool "PCI support"
174 help 171 help
diff --git a/drivers/amba/Kconfig b/drivers/amba/Kconfig
new file mode 100644
index 000000000000..d1cba6a9b3b8
--- /dev/null
+++ b/drivers/amba/Kconfig
@@ -0,0 +1,2 @@
1config ARM_AMBA
2 bool