Skip to content

Commit

Permalink
sh_eth: call sh_eth_tsu_get_offset() from TSU register accessors
Browse files Browse the repository at this point in the history
With sh_eth_tsu_get_offset() now actually returning TSU register's offset,
we  can at last use it in sh_eth_tsu_{read|write}(). Somehow this saves 248
bytes of object code with AArch64 gcc 4.8.5... :-)

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sergei Shtylyov authored and David S. Miller committed Jul 23, 2018
1 parent 41414f0 commit ecbecb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/renesas/sh_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ static u16 sh_eth_tsu_get_offset(struct sh_eth_private *mdp, int enum_index)
static void sh_eth_tsu_write(struct sh_eth_private *mdp, u32 data,
int enum_index)
{
u16 offset = mdp->reg_offset[enum_index];
u16 offset = sh_eth_tsu_get_offset(mdp, enum_index);

if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
return;
Expand All @@ -457,7 +457,7 @@ static void sh_eth_tsu_write(struct sh_eth_private *mdp, u32 data,

static u32 sh_eth_tsu_read(struct sh_eth_private *mdp, int enum_index)
{
u16 offset = mdp->reg_offset[enum_index];
u16 offset = sh_eth_tsu_get_offset(mdp, enum_index);

if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
return ~0U;
Expand Down

0 comments on commit ecbecb0

Please sign in to comment.