summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2025-01-18 07:14:35 +0100
committerMarek Vasut <[email protected]>2025-01-29 22:52:23 +0100
commit4cf712a3be84de9c4bc8273b6734684e2b0b4e49 (patch)
treef1b6e088f79e464f168509211932bd1e79a1c723 /include
parent021baf7b08cceb58bb850859dba1614424e16a83 (diff)
net: miiphybb: configs: Drop CONFIG_BITBANGMII_MULTI
It seems that every remaining system which enables BITBANGMII also enables BITBANGMII_MULTI . Remove the BITBANGMII_MULTI symbol and assume it is always enabled. This allows removal of a bit of legacy code. No functional change intended. Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Paul Barker <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/miiphy.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/miiphy.h b/include/miiphy.h
index 5abffd8fb6b..2bb4f62ea76 100644
--- a/include/miiphy.h
+++ b/include/miiphy.h
@@ -72,9 +72,7 @@ struct bb_miiphy_bus {
int (*get_mdio)(struct bb_miiphy_bus *bus, int *v);
int (*set_mdc)(struct bb_miiphy_bus *bus, int v);
int (*delay)(struct bb_miiphy_bus *bus);
-#ifdef CONFIG_BITBANGMII_MULTI
void *priv;
-#endif
};
extern struct bb_miiphy_bus bb_miiphy_buses[];