Skip to content
Snippets Groups Projects
Commit 44afbbc0 authored by Codrin Ciubotariu's avatar Codrin Ciubotariu Committed by York Sun
Browse files

net/phy: Fix PHY id for VSC8514


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: default avatarCodrin Ciubotariu <codrin.ciubotariu@freescale.com>
Cc: York Sun <yorksun@freescale.com>
Reviewed-by: default avatarYork Sun <yorksun@freescale.com>
parent e77224e2
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment