mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 06:02:38 +00:00
sh_eth: use EDMR_SRST_GETHER in sh_eth_check_reset()
sh_eth_check_reset() uses a bare number where EDMR_SRST_GETHER would fit, i.e. the receive/trasmit software reset bits that comprise EDMR_SRST_GETHER read as 1 while the corresponding reset is in progress and thus, when both are 0, the reset is complete. Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Reviewed-by: Simon Horman <horms+renesas@verge.net.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3ccec4bd10
commit
97717edc69
@ -899,7 +899,7 @@ static int sh_eth_check_reset(struct net_device *ndev)
|
||||
int cnt = 100;
|
||||
|
||||
while (cnt > 0) {
|
||||
if (!(sh_eth_read(ndev, EDMR) & 0x3))
|
||||
if (!(sh_eth_read(ndev, EDMR) & EDMR_SRST_GETHER))
|
||||
break;
|
||||
mdelay(1);
|
||||
cnt--;
|
||||
|
Loading…
Reference in New Issue
Block a user