Skip to content

Commit

Permalink
sh_eth: rename PSR bits
Browse files Browse the repository at this point in the history
In all the SoC manuals (except R-Car gen2) the PHY status register's name
is abbreviated to  PSR with the only valid bit 0 named LMON.  Follow the
suit and rename the corresponding *enum* tag/entry.

Signed-off-by: Sergey Shtylyov <s.shtylyov@omprussia.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sergey Shtylyov authored and David S. Miller committed Mar 13, 2021
1 parent bc9d992 commit 4585b72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/renesas/sh_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1749,7 +1749,7 @@ static void sh_eth_emac_interrupt(struct net_device *ndev)
link_stat = sh_eth_read(ndev, PSR);
if (mdp->ether_link_active_low)
link_stat = ~link_stat;
if (!(link_stat & PHY_ST_LINK)) {
if (!(link_stat & PSR_LMON)) {
sh_eth_rcv_snd_disable(ndev);
} else {
/* Link Up */
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/renesas/sh_eth.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ enum PIR_BIT {
};

/* PSR */
enum PHY_STATUS_BIT { PHY_ST_LINK = 0x01, };
enum PSR_BIT { PSR_LMON = 0x01, };

/* EESR */
enum EESR_BIT {
Expand Down

0 comments on commit 4585b72

Please sign in to comment.