Commit 97fdaab4 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: phy: broadcom: fix PHY_BCM_OUI_4

PHY_BCM_OUI_4 is missing two significant digits that actually make it an
OUI, add those missing bits so it becomes usable again for matching.

Fixes: b560a58c ("net: phy: add Broadcom BCM7xxx internal PHY driver")
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 153df3c7
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define PHY_BCM_OUI_1 0x00206000 #define PHY_BCM_OUI_1 0x00206000
#define PHY_BCM_OUI_2 0x0143bc00 #define PHY_BCM_OUI_2 0x0143bc00
#define PHY_BCM_OUI_3 0x03625c00 #define PHY_BCM_OUI_3 0x03625c00
#define PHY_BCM_OUI_4 0x600d0000 #define PHY_BCM_OUI_4 0x600d8400
#define PHY_BCM_OUI_5 0x03625e00 #define PHY_BCM_OUI_5 0x03625e00
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment