summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-01-15 15:27:22 -0600
committerTom Rini <[email protected]>2026-01-21 12:05:15 -0600
commitb9d4a17b90fd3b98023da5cf3b45a1a5058fb0ad (patch)
treeeae38c0bcf85ead3476b347f5896a3115a40c0d0 /drivers
parente1561ac2de16525a5952f8239c6477cda2cd9212 (diff)
arm: Remove remainder of ARCH_ORION5X
With commit 5663b137e682 ("arm: Remove edminiv2 board") the last ARCH_ORION5X platform was removed. Remove the rest of the architecture code which is now unused. Reviewed-by: Tony Dinh <[email protected]> Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i2c/mvtwsi.c4
-rw-r--r--drivers/net/Kconfig2
-rw-r--r--drivers/net/mvgbe.c5
-rw-r--r--drivers/usb/host/Kconfig2
-rw-r--r--drivers/usb/host/ehci-marvell.c2
5 files changed, 3 insertions, 12 deletions
diff --git a/drivers/i2c/mvtwsi.c b/drivers/i2c/mvtwsi.c
index 44e8e191b03..22a32a2fd76 100644
--- a/drivers/i2c/mvtwsi.c
+++ b/drivers/i2c/mvtwsi.c
@@ -30,9 +30,7 @@ DECLARE_GLOBAL_DATA_PTR;
*/
#if !CONFIG_IS_ENABLED(DM_I2C)
-#if defined(CONFIG_ARCH_ORION5X)
-#include <asm/arch/orion5x.h>
-#elif (defined(CONFIG_ARCH_KIRKWOOD) || defined(CONFIG_ARCH_MVEBU))
+#if (defined(CONFIG_ARCH_KIRKWOOD) || defined(CONFIG_ARCH_MVEBU))
#include <asm/arch/soc.h>
#elif defined(CONFIG_ARCH_SUNXI)
#include <asm/arch/i2c.h>
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 0089f74c69d..4fda1b0c28c 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -539,7 +539,7 @@ config MV88E6XXX
config MVGBE
bool "Marvell Orion5x/Kirkwood network interface support"
- depends on ARCH_KIRKWOOD || ARCH_ORION5X
+ depends on ARCH_KIRKWOOD
select PHYLIB
help
This driver supports the network interface units in the
diff --git a/drivers/net/mvgbe.c b/drivers/net/mvgbe.c
index 17b62bbc205..107a33aa9f5 100644
--- a/drivers/net/mvgbe.c
+++ b/drivers/net/mvgbe.c
@@ -25,12 +25,7 @@
#include <asm/system.h>
#include <asm/byteorder.h>
#include <asm/arch/cpu.h>
-
-#if defined(CONFIG_ARCH_KIRKWOOD)
#include <asm/arch/soc.h>
-#elif defined(CONFIG_ARCH_ORION5X)
-#include <asm/arch/orion5x.h>
-#endif
#include "mvgbe.h"
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 54df4264a44..d75883e2865 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -187,7 +187,7 @@ config USB_EHCI_EXYNOS
config USB_EHCI_MARVELL
bool "Support for Marvell on-chip EHCI USB controller"
- depends on ARCH_MVEBU || ARCH_KIRKWOOD || ARCH_ORION5X
+ depends on ARCH_MVEBU || ARCH_KIRKWOOD
default y
select USB_EHCI_IS_TDI if !ARM64
select USB_EHCI_IS_TDI if ALLEYCAT_5
diff --git a/drivers/usb/host/ehci-marvell.c b/drivers/usb/host/ehci-marvell.c
index ca0ab57d49c..794a4168913 100644
--- a/drivers/usb/host/ehci-marvell.c
+++ b/drivers/usb/host/ehci-marvell.c
@@ -17,8 +17,6 @@
#if defined(CONFIG_ARCH_KIRKWOOD)
#include <asm/arch/soc.h>
-#elif defined(CONFIG_ARCH_ORION5X)
-#include <asm/arch/orion5x.h>
#endif
DECLARE_GLOBAL_DATA_PTR;