From: Heiner Kallweit <hkallweit1@gmail.com>
To: Linus Walleij <linus.walleij@linaro.org>,
Paolo Abeni <pabeni@redhat.com>,
Eric Dumazet <edumazet@google.com>,
David Miller <davem@davemloft.net>,
Andrew Lunn <andrew+netdev@lunn.ch>,
Simon Horman <horms@kernel.org>,
Siddharth Vadapalli <s-vadapalli@ti.com>,
Roger Quadros <rogerq@kernel.org>,
Jakub Kicinski <kuba@kernel.org>
Cc: "netdev@vger.kernel.org" <netdev@vger.kernel.org>,
linux-omap@vger.kernel.org
Subject: [PATCH net-next] net: ethernet: ti: davinci_emac: remove member phy_id from struct emac_platform_data
Date: Fri, 6 Feb 2026 22:53:26 +0100 [thread overview]
Message-ID: <5bc19909-0fc7-485c-a573-4819eeea5b5d@gmail.com> (raw)
b4aed01de486 ("ARM: davinci: Delete DM646x board files") removed the
last user of member phy_id. So let's remove phy_id.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
drivers/net/ethernet/ti/davinci_emac.c | 24 ++++++++++--------------
include/linux/davinci_emac.h | 9 ---------
2 files changed, 10 insertions(+), 23 deletions(-)
diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index ed8116fb05e..df51441a2b8 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -329,7 +329,6 @@ struct emac_priv {
u32 mac_hash2;
u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
u32 rx_addr_type;
- const char *phy_id;
struct device_node *phy_node;
spinlock_t lock;
/*platform specific members*/
@@ -1418,6 +1417,7 @@ static int emac_dev_open(struct net_device *ndev)
struct emac_priv *priv = netdev_priv(ndev);
struct phy_device *phydev = NULL;
struct device *phy = NULL;
+ const char *phy_id = NULL;
ret = pm_runtime_resume_and_get(&priv->pdev->dev);
if (ret < 0) {
@@ -1502,8 +1502,8 @@ static int emac_dev_open(struct net_device *ndev)
}
}
- /* use the first phy on the bus if pdata did not give us a phy id */
- if (!phydev && !priv->phy_id) {
+ /* use the first phy on the bus */
+ if (!phydev) {
/* NOTE: we can't use bus_find_device_by_name() here because
* the device name is not guaranteed to be 'davinci_mdio'. On
* some systems it can be 'davinci_mdio.0' so we need to use
@@ -1513,20 +1513,19 @@ static int emac_dev_open(struct net_device *ndev)
phy = bus_find_device(&mdio_bus_type, NULL, NULL,
match_first_device);
if (phy) {
- priv->phy_id = dev_name(phy);
- if (!priv->phy_id || !*priv->phy_id)
+ phy_id = dev_name(phy);
+ if (!phy_id || !*phy_id)
put_device(phy);
}
}
- if (!phydev && priv->phy_id && *priv->phy_id) {
- phydev = phy_connect(ndev, priv->phy_id,
- &emac_adjust_link,
+ if (!phydev && phy_id && *phy_id) {
+ phydev = phy_connect(ndev, phy_id, &emac_adjust_link,
PHY_INTERFACE_MODE_MII);
put_device(phy); /* reference taken by bus_find_device */
if (IS_ERR(phydev)) {
dev_err(emac_dev, "could not connect to phy %s\n",
- priv->phy_id);
+ phy_id);
ret = PTR_ERR(phydev);
goto err;
}
@@ -1761,10 +1760,8 @@ davinci_emac_of_get_pdata(struct platform_device *pdev, struct emac_priv *priv)
pdata->no_bd_ram = of_property_read_bool(np, "ti,davinci-no-bd-ram");
priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
- if (!priv->phy_node) {
- if (!of_phy_is_fixed_link(np))
- pdata->phy_id = NULL;
- else if (of_phy_register_fixed_link(np) >= 0)
+ if (!priv->phy_node && of_phy_is_fixed_link(np)) {
+ if (!of_phy_register_fixed_link(np))
priv->phy_node = of_node_get(np);
}
@@ -1846,7 +1843,6 @@ static int davinci_emac_probe(struct platform_device *pdev)
/* MAC addr and PHY mask , RMII enable info from platform_data */
memcpy(priv->mac_addr, pdata->mac_addr, ETH_ALEN);
- priv->phy_id = pdata->phy_id;
priv->rmii_en = pdata->rmii_en;
priv->version = pdata->version;
priv->int_enable = pdata->interrupt_enable;
diff --git a/include/linux/davinci_emac.h b/include/linux/davinci_emac.h
index 28e6cf1356d..c1482557d3e 100644
--- a/include/linux/davinci_emac.h
+++ b/include/linux/davinci_emac.h
@@ -25,15 +25,6 @@ struct emac_platform_data {
u32 ctrl_ram_offset;
u32 hw_ram_addr;
u32 ctrl_ram_size;
-
- /*
- * phy_id can be one of the following:
- * - NULL : use the first phy on the bus,
- * - "" : force to 100/full, no mdio control
- * - "<bus>:<addr>" : use the specified bus and phy
- */
- const char *phy_id;
-
u8 rmii_en;
u8 version;
bool no_bd_ram;
--
2.53.0
next reply other threads:[~2026-02-06 21:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-06 21:53 Heiner Kallweit [this message]
2026-02-11 9:10 ` [PATCH net-next] net: ethernet: ti: davinci_emac: remove member phy_id from struct emac_platform_data Paolo Abeni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5bc19909-0fc7-485c-a573-4819eeea5b5d@gmail.com \
--to=hkallweit1@gmail.com \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-omap@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=rogerq@kernel.org \
--cc=s-vadapalli@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox