mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
5863363493
Revert backported upstream commits 421f8663b3a7 and 8d820bc9d12b, which have introduced a regression in BCMGENET kconfig that disabled the network driver for the Raspberry Pi. Fixes:0c405bceba
("kernel: bump 5.15 to 5.15.85") Fixes:e900822326
("kernel: bump 5.15 to 5.15.84") Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 882882912cd25a637ba0cf09932ad248f584e680 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
|
Date: Wed, 28 Dec 2022 13:19:49 +0100
|
|
Subject: [PATCH 1/2] Revert "net: broadcom: Add PTP_1588_CLOCK_OPTIONAL
|
|
dependency for BCMGENET under ARCH_BCM2835"
|
|
|
|
[ Upstream commit 421f8663b3a775c32f724f793264097c60028f2e ]
|
|
|
|
This reverts commit eb96fd3983b2cca1c90db45eaff1de67b94f9950.
|
|
---
|
|
drivers/net/ethernet/broadcom/Kconfig | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/ethernet/broadcom/Kconfig
|
|
+++ b/drivers/net/ethernet/broadcom/Kconfig
|
|
@@ -71,14 +71,13 @@ config BCM63XX_ENET
|
|
config BCMGENET
|
|
tristate "Broadcom GENET internal MAC support"
|
|
depends on HAS_IOMEM
|
|
- depends on PTP_1588_CLOCK_OPTIONAL || !ARCH_BCM2835
|
|
select MII
|
|
select PHYLIB
|
|
select FIXED_PHY
|
|
select BCM7XXX_PHY
|
|
select MDIO_BCM_UNIMAC
|
|
select DIMLIB
|
|
- select BROADCOM_PHY if ARCH_BCM2835
|
|
+ select BROADCOM_PHY if (ARCH_BCM2835 && PTP_1588_CLOCK_OPTIONAL)
|
|
help
|
|
This driver supports the built-in Ethernet MACs found in the
|
|
Broadcom BCM7xxx Set Top Box family chipset.
|