mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 04:50:19 +01:00
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: Codrin Ciubotariu <codrin.ciubotariu@freescale.com> Cc: York Sun <yorksun@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
This commit is contained in:
parent
e77224e2d8
commit
44afbbc0f0
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue