Commit 379f7bf8 authored by Arınç ÜNAL's avatar Arınç ÜNAL Committed by David S. Miller

net: dsa: mt7530: get rid of function sanity check

Get rid of checking whether functions are filled properly. priv->info which
is an mt753x_info structure is filled and checked for before this check.
It's unnecessary checking whether it's filled properly.
Signed-off-by: default avatarArınç ÜNAL <arinc.unal@arinc9.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6512204b
...@@ -3232,13 +3232,6 @@ mt7530_probe_common(struct mt7530_priv *priv) ...@@ -3232,13 +3232,6 @@ mt7530_probe_common(struct mt7530_priv *priv)
if (!priv->info) if (!priv->info)
return -EINVAL; return -EINVAL;
/* Sanity check if these required device operations are filled
* properly.
*/
if (!priv->info->sw_setup || !priv->info->phy_read_c22 ||
!priv->info->phy_write_c22 || !priv->info->mac_port_get_caps)
return -EINVAL;
priv->id = priv->info->id; priv->id = priv->info->id;
priv->dev = dev; priv->dev = dev;
priv->ds->priv = priv; priv->ds->priv = priv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment