|
@@ -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,
|
|
static void sh_eth_tsu_write(struct sh_eth_private *mdp, u32 data,
|
|
|
int enum_index)
|
|
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))
|
|
if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
|
|
|
return;
|
|
return;
|
|
@@ -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)
|
|
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))
|
|
if (WARN_ON(offset == SH_ETH_OFFSET_INVALID))
|
|
|
return ~0U;
|
|
return ~0U;
|