mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
d40691a5fb
net: dsa: mt7530: explain exposing MDIO bus of MT7531AE better net: dsa: mt7530: do not pass port variable to mt7531_rgmii_setup() net: dsa: mt7530: use priv->ds->num_ports instead of MT7530_NUM_PORTS net: dsa: mt7530: get rid of mac_port_validate member of mt753x_info net: dsa: mt7530: refactor MT7530_PMEEECR_P() net: dsa: mt7530: get rid of function sanity check net: dsa: mt7530: define MAC speed capabilities per switch model net: dsa: mt7530: return mt7530_setup_mdio & mt7531_setup_common on error net: dsa: mt7530: move MT753X_MTRAP operations for MT7530 net: dsa: mt7530: refactor MT7530_HWTRAP and MT7530_MHWTRAP net: dsa: mt7530: refactor MT7530_MFC and MT7531_CFC, add MT7531_QRY_FFP net: dsa: mt7530: rename mt753x_bpdu_port_fw enum to mt753x_to_cpu_fw net: dsa: mt7530: rename p5_intf_sel and use only for MT7530 switch net: dsa: mt7530: refactor MT7530_PMCR_P() net: dsa: mt7530: disable EEE abilities on failure on MT7531 and MT7988 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From dd0f15fc877c10567699190bce0f55e96f4ad6b5 Mon Sep 17 00:00:00 2001
|
||
From: =?UTF-8?q?Ar=C4=B1n=C3=A7=20=C3=9CNAL?= <arinc.unal@arinc9.com>
|
||
Date: Mon, 22 Apr 2024 10:15:17 +0300
|
||
Subject: [PATCH 10/15] net: dsa: mt7530: get rid of function sanity check
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
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: Arınç ÜNAL <arinc.unal@arinc9.com>
|
||
---
|
||
drivers/net/dsa/mt7530.c | 7 -------
|
||
1 file changed, 7 deletions(-)
|
||
|
||
--- a/drivers/net/dsa/mt7530.c
|
||
+++ b/drivers/net/dsa/mt7530.c
|
||
@@ -3220,13 +3220,6 @@ mt7530_probe_common(struct mt7530_priv *
|
||
if (!priv->info)
|
||
return -EINVAL;
|
||
|
||
- /* Sanity check if these required device operations are filled
|
||
- * properly.
|
||
- */
|
||
- if (!priv->info->sw_setup || !priv->info->phy_read ||
|
||
- !priv->info->phy_write || !priv->info->mac_port_get_caps)
|
||
- return -EINVAL;
|
||
-
|
||
priv->id = priv->info->id;
|
||
priv->dev = dev;
|
||
priv->ds->priv = priv;
|