diff mbox series

kernel: b53: update the BCM5365 UID in the fixup

Message ID 179387225.OJ9GlLhqg0@tool
State Accepted
Delegated to: Álvaro Fernández
Headers show
Series kernel: b53: update the BCM5365 UID in the fixup | expand

Commit Message

Daniel González Cabanelas Feb. 27, 2021, 10:58 a.m. UTC
The BCM5365 UID was updated in the driver (commit: cbcac4fde8).

Also update it in the fixup.

Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
---
 .../linux/generic/files/drivers/net/phy/b53/b53_phy_fixup.c   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/target/linux/generic/files/drivers/net/phy/b53/b53_phy_fixup.c b/target/linux/generic/files/drivers/net/phy/b53/b53_phy_fixup.c
index e2f8a39ab6..2cae6dee64 100644
--- a/target/linux/generic/files/drivers/net/phy/b53/b53_phy_fixup.c
+++ b/target/linux/generic/files/drivers/net/phy/b53/b53_phy_fixup.c
@@ -24,7 +24,7 @@ 
 
 #define B53_BRCM_OUI_1	0x0143bc00
 #define B53_BRCM_OUI_2	0x03625c00
-#define B53_BRCM_OUI_3	0x00406000
+#define B53_BRCM_OUI_3	0x00406300
 
 static int b53_phy_fixup(struct phy_device *dev)
 {
@@ -40,7 +40,7 @@  static int b53_phy_fixup(struct phy_device *dev)
 
 	if ((phy_id & 0xfffffc00) == B53_BRCM_OUI_1 ||
 	    (phy_id & 0xfffffc00) == B53_BRCM_OUI_2 ||
-	    (phy_id & 0xfffffc00) == B53_BRCM_OUI_3) {
+	    (phy_id & 0xffffff00) == B53_BRCM_OUI_3) {
 		dev->phy_id = phy_id;
 	}