]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
net/phy: Fix PHY id for VSC8514
authorCodrin Ciubotariu <codrin.ciubotariu@freescale.com>
Wed, 26 Mar 2014 16:13:14 +0000 (18:13 +0200)
committerYork Sun <yorksun@freescale.com>
Wed, 23 Apr 2014 00:58:47 +0000 (17:58 -0700)
In the current Datasheet for VSC8514 there is a mistake, saying that
the PHY id is 0x70570. The real value in the identifier registers is
0x70670. Linux PHY driver uses 0x70670 also.

Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@freescale.com>
Cc: York Sun <yorksun@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
drivers/net/phy/vitesse.c

index c555979661189e1e9cb41cad038e263dea13391c..3a55d271a532f9c95756c377b5d8f252264dd0fe 100644 (file)
@@ -296,7 +296,7 @@ static struct phy_driver VSC8574_driver = {
 
 static struct phy_driver VSC8514_driver = {
        .name = "Vitesse VSC8514",
-       .uid = 0x70570,
+       .uid = 0x70670,
        .mask = 0xffff0,
        .features = PHY_GBIT_FEATURES,
        .config = &vsc8514_config,