* [PATCH net-next] net: mdio-gpio: remove support for platform data
@ 2024-08-21 12:25 Bartosz Golaszewski
2024-08-21 12:42 ` Andrew Lunn
2024-08-26 15:54 ` Andrew Lunn
0 siblings, 2 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2024-08-21 12:25 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit, Russell King, David S . Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: linux-kernel, netdev, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
There are no more board files defining platform data for this driver so
remove the header and drop the support.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
MAINTAINERS | 1 -
drivers/net/mdio/mdio-gpio.c | 7 -------
include/linux/platform_data/mdio-gpio.h | 14 --------------
3 files changed, 22 deletions(-)
delete mode 100644 include/linux/platform_data/mdio-gpio.h
diff --git a/MAINTAINERS b/MAINTAINERS
index a7cb909ffa1d..146f4eb95e7c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8413,7 +8413,6 @@ F: include/linux/phy.h
F: include/linux/phy_fixed.h
F: include/linux/phylib_stubs.h
F: include/linux/platform_data/mdio-bcm-unimac.h
-F: include/linux/platform_data/mdio-gpio.h
F: include/trace/events/mdio.h
F: include/uapi/linux/mdio.h
F: include/uapi/linux/mii.h
diff --git a/drivers/net/mdio/mdio-gpio.c b/drivers/net/mdio/mdio-gpio.c
index 82088741debd..9e194ebfe7d2 100644
--- a/drivers/net/mdio/mdio-gpio.c
+++ b/drivers/net/mdio/mdio-gpio.c
@@ -23,7 +23,6 @@
#include <linux/mdio-gpio.h>
#include <linux/module.h>
#include <linux/of_mdio.h>
-#include <linux/platform_data/mdio-gpio.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
@@ -110,7 +109,6 @@ static struct mii_bus *mdio_gpio_bus_init(struct device *dev,
struct mdio_gpio_info *bitbang,
int bus_id)
{
- struct mdio_gpio_platform_data *pdata = dev_get_platdata(dev);
struct mii_bus *new_bus;
bitbang->ctrl.ops = &mdio_gpio_ops;
@@ -127,11 +125,6 @@ static struct mii_bus *mdio_gpio_bus_init(struct device *dev,
else
strscpy(new_bus->id, "gpio", sizeof(new_bus->id));
- if (pdata) {
- new_bus->phy_mask = pdata->phy_mask;
- new_bus->phy_ignore_ta_mask = pdata->phy_ignore_ta_mask;
- }
-
if (device_is_compatible(dev, "microchip,mdio-smi0")) {
bitbang->ctrl.op_c22_read = 0;
bitbang->ctrl.op_c22_write = 0;
diff --git a/include/linux/platform_data/mdio-gpio.h b/include/linux/platform_data/mdio-gpio.h
deleted file mode 100644
index 13874fa6e767..000000000000
--- a/include/linux/platform_data/mdio-gpio.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-/*
- * MDIO-GPIO bus platform data structure
- */
-
-#ifndef __LINUX_MDIO_GPIO_PDATA_H
-#define __LINUX_MDIO_GPIO_PDATA_H
-
-struct mdio_gpio_platform_data {
- u32 phy_mask;
- u32 phy_ignore_ta_mask;
-};
-
-#endif /* __LINUX_MDIO_GPIO_PDATA_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] net: mdio-gpio: remove support for platform data
2024-08-21 12:25 [PATCH net-next] net: mdio-gpio: remove support for platform data Bartosz Golaszewski
@ 2024-08-21 12:42 ` Andrew Lunn
2024-08-21 12:45 ` Bartosz Golaszewski
2024-08-26 15:54 ` Andrew Lunn
1 sibling, 1 reply; 4+ messages in thread
From: Andrew Lunn @ 2024-08-21 12:42 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Heiner Kallweit, Russell King, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-kernel, netdev,
Bartosz Golaszewski
On Wed, Aug 21, 2024 at 02:25:29PM +0200, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> There are no more board files defining platform data for this driver so
> remove the header and drop the support.
There are a number of out of tree x86 boards which use this, flying in
various aircraft, so have a long life, and do get kernel updates.
I'm happy to support this code, and as a PHYLIB Maintainer, it adds
little overhead to my maintenance works. If you really insist, i can
try to get code added to drivers/platform/x86/ which use this.
Andrew
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] net: mdio-gpio: remove support for platform data
2024-08-21 12:42 ` Andrew Lunn
@ 2024-08-21 12:45 ` Bartosz Golaszewski
0 siblings, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2024-08-21 12:45 UTC (permalink / raw)
To: Andrew Lunn
Cc: Heiner Kallweit, Russell King, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-kernel, netdev,
Bartosz Golaszewski
On Wed, Aug 21, 2024 at 2:42 PM Andrew Lunn <andrew@lunn.ch> wrote:
>
> On Wed, Aug 21, 2024 at 02:25:29PM +0200, Bartosz Golaszewski wrote:
> > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> >
> > There are no more board files defining platform data for this driver so
> > remove the header and drop the support.
>
> There are a number of out of tree x86 boards which use this, flying in
> various aircraft, so have a long life, and do get kernel updates.
>
> I'm happy to support this code, and as a PHYLIB Maintainer, it adds
> little overhead to my maintenance works. If you really insist, i can
> try to get code added to drivers/platform/x86/ which use this.
>
We typically don't care about out-of-tree board files upstream. Having
users for this struct in mainline would of course be great and a
perfect reason to keep it.
Bart
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] net: mdio-gpio: remove support for platform data
2024-08-21 12:25 [PATCH net-next] net: mdio-gpio: remove support for platform data Bartosz Golaszewski
2024-08-21 12:42 ` Andrew Lunn
@ 2024-08-26 15:54 ` Andrew Lunn
1 sibling, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2024-08-26 15:54 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Heiner Kallweit, Russell King, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, linux-kernel, netdev,
Bartosz Golaszewski
On Wed, Aug 21, 2024 at 02:25:29PM +0200, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> There are no more board files defining platform data for this driver so
> remove the header and drop the support.
>
> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
FYI: I'm working on a rework which changes the default for when there
is no DT node. That will allow the removal of the platform data.
It is being built tested at the moment, so i will probably post the
series tomorrow.
Andrew
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-26 15:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-21 12:25 [PATCH net-next] net: mdio-gpio: remove support for platform data Bartosz Golaszewski
2024-08-21 12:42 ` Andrew Lunn
2024-08-21 12:45 ` Bartosz Golaszewski
2024-08-26 15:54 ` Andrew Lunn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).