]> git.baikalelectronics.ru Git - kernel.git/commit
net: phy: at803x: fix PHY ID masks
authorMichael Walle <michael@walle.cc>
Fri, 22 May 2020 09:53:31 +0000 (11:53 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 23 May 2020 23:25:28 +0000 (16:25 -0700)
commitef0aae7b5e0fec76da24a6ad650a16dbffae4e69
tree15bc6f66cbb0f59510e329fea2d9142e5811f95a
parent7f01c61834738787539521a66c385645b6980d01
net: phy: at803x: fix PHY ID masks

Ever since its first commit fa8080c5281aa ("phy: add AT803x driver") the
PHY ID mask was set to 0xffffffef. It is unclear to me why this mask was
chosen in the first place. Both the AR8031/AR8033 and the AR8035
datasheets mention it is always the given value:
 - for AR8031/AR8033 its 0x004d/0xd074
 - for AR8035 its 0x004d/0xd072

Unfortunately, I don't have a datasheet for the AR8030. Therefore, we
leave its PHY ID mask untouched. For the PHYs mentioned before use the
handy PHY_ID_MATCH_EXACT() macro.

I've tried to contact the author of the initial commit, but received no
answer so far.

Cc: Matus Ujhelyi <ujhelyi.m@gmail.com>
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/at803x.c