Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 388c4bb4 authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by David S. Miller
Browse files

sh_eth: uninline sh_eth_tsu_get_offset()



sh_eth_tsu_get_offset() is called several  times  by the driver, remove
*inline* and move  that function  from the header to the driver  itself
to let gcc decide  whether to expand it inline or not...

Signed-off-by: default avatarSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fd800f64
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -439,6 +439,11 @@ static void sh_eth_modify(struct net_device *ndev, int enum_index, u32 clear,
		     enum_index);
}

static void *sh_eth_tsu_get_offset(struct sh_eth_private *mdp, int enum_index)
{
	return mdp->tsu_addr + mdp->reg_offset[enum_index];
}

static void sh_eth_tsu_write(struct sh_eth_private *mdp, u32 data,
			     int enum_index)
{
+0 −6
Original line number Diff line number Diff line
@@ -558,10 +558,4 @@ struct sh_eth_private {
	unsigned wol_enabled:1;
};

static inline void *sh_eth_tsu_get_offset(struct sh_eth_private *mdp,
					  int enum_index)
{
	return mdp->tsu_addr + mdp->reg_offset[enum_index];
}

#endif	/* #ifndef __SH_ETH_H__ */