aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Zhang <william.zhang@broadcom.com>2022-08-22 11:39:45 -0700
committerTom Rini <trini@konsulko.com>2022-10-31 08:55:59 -0400
commit2dab3ee50c600e4e58f8bbf444ce8ffaee783916 (patch)
tree2a8e7fb8f6f238b4aa1fe082603515acf0c68cda
parent872308c6b1a3d980fea5d514913a3224712299e0 (diff)
downloadu-boot-2dab3ee50c600e4e58f8bbf444ce8ffaee783916.zip
u-boot-2dab3ee50c600e4e58f8bbf444ce8ffaee783916.tar.gz
u-boot-2dab3ee50c600e4e58f8bbf444ce8ffaee783916.tar.bz2
arm: bcmbca: replace ARCH_BCM6858 symbols in Kconfig with BCM6858
As CONFIG_ARCH_BCM6858 is replaced with CONFIG_BCM6858, update the driver Kconfig to use the new config symbol. Signed-off-by: William Zhang <william.zhang@broadcom.com> Reviewed-by: Philippe Reynes <philippe.reynes@softathome.com>
-rw-r--r--drivers/gpio/Kconfig3
-rw-r--r--drivers/led/Kconfig2
-rw-r--r--drivers/mtd/nand/raw/Kconfig2
-rw-r--r--drivers/spi/Kconfig3
-rw-r--r--drivers/watchdog/Kconfig3
5 files changed, 5 insertions, 8 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index df45bce..a6dd02f 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -111,8 +111,7 @@ config BCM2835_GPIO
config BCM6345_GPIO
bool "BCM6345 GPIO driver"
depends on DM_GPIO && (ARCH_BMIPS || BCM6856 || \
- ARCH_BCM6858 || BCM63158 || \
- ARCH_BCM6753)
+ BCM6858 || BCM63158 || ARCH_BCM6753)
help
This driver supports the GPIO banks on BCM6345 SoCs.
diff --git a/drivers/led/Kconfig b/drivers/led/Kconfig
index bd8f23f..98f015a 100644
--- a/drivers/led/Kconfig
+++ b/drivers/led/Kconfig
@@ -37,7 +37,7 @@ config LED_BCM6753
config LED_BCM6858
bool "LED Support for BCM6858"
- depends on LED && (BCM6856 || ARCH_BCM6858 || BCM63158)
+ depends on LED && (BCM6856 || BCM6858 || BCM63158)
help
This option enables support for LEDs connected to the BCM6858
HW has blinking capabilities and up to 32 LEDs can be controlled.
diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig
index 5d006ca..f8445e0 100644
--- a/drivers/mtd/nand/raw/Kconfig
+++ b/drivers/mtd/nand/raw/Kconfig
@@ -115,7 +115,7 @@ config NAND_BRCMNAND_6838
config NAND_BRCMNAND_6858
bool "Support Broadcom NAND controller on bcm6858"
- depends on NAND_BRCMNAND && ARCH_BCM6858
+ depends on NAND_BRCMNAND && BCM6858
help
Enable support for broadcom nand driver on bcm6858.
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index 36095cc..34b92ce 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -101,8 +101,7 @@ config ATMEL_SPI
config BCM63XX_HSSPI
bool "BCM63XX HSSPI driver"
- depends on (ARCH_BMIPS || BCM6856 || \
- ARCH_BCM6858 || BCM63158)
+ depends on (ARCH_BMIPS || BCM6856 || BCM6858 || BCM63158)
help
Enable the BCM6328 HSSPI driver. This driver can be used to
access the SPI NOR flash on platforms embedding this Broadcom
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index aef6d3f..3b726af 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -131,8 +131,7 @@ config WDT_AT91
config WDT_BCM6345
bool "BCM6345 watchdog timer support"
depends on WDT && (ARCH_BMIPS || BCM6856 || \
- ARCH_BCM6858 || BCM63158 || \
- ARCH_BCM6753)
+ BCM6858 || BCM63158 || ARCH_BCM6753)
help
Select this to enable watchdog timer for BCM6345 SoCs.
The watchdog timer is stopped when initialized.