From: Andrew Lunn <andrew@lunn.ch>
To: Arnd Bergmann <arnd@kernel.org>
Cc: Wei Fang <wei.fang@nxp.com>,
linux-gpio@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>,
Shenwei Wang <shenwei.wang@nxp.com>,
Clark Wang <xiaoning.wang@nxp.com>,
NXP Linux Team <linux-imx@nxp.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] fec: convert to gpio descriptor
Date: Thu, 26 Jan 2023 19:02:41 +0100 [thread overview]
Message-ID: <Y9LAQRjb6h+ynXBZ@lunn.ch> (raw)
In-Reply-To: <20230126135339.3488682-1-arnd@kernel.org>
On Thu, Jan 26, 2023 at 02:52:58PM +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
>
> The driver can be trivially converted, as it only triggers the gpio
> pin briefly to do a reset, and it already only supports DT.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
> drivers/net/ethernet/freescale/fec_main.c | 25 ++++++++++-------------
> 1 file changed, 11 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c
> index 5ff45b1a74a5..dee2890fd702 100644
> --- a/drivers/net/ethernet/freescale/fec_main.c
> +++ b/drivers/net/ethernet/freescale/fec_main.c
> @@ -56,7 +56,7 @@
> #include <linux/fec.h>
> #include <linux/of.h>
> #include <linux/of_device.h>
> -#include <linux/of_gpio.h>
> +#include <linux/gpio/consumer.h>
> #include <linux/of_mdio.h>
> #include <linux/of_net.h>
> #include <linux/regulator/consumer.h>
> @@ -4035,7 +4035,8 @@ static int fec_enet_init(struct net_device *ndev)
> #ifdef CONFIG_OF
> static int fec_reset_phy(struct platform_device *pdev)
> {
> - int err, phy_reset;
> + int err;
> + struct gpio_desc *phy_reset;
> bool active_high = false;
> int msec = 1, phy_post_delay = 0;
> struct device_node *np = pdev->dev.of_node;
Hi Arnd
netdev drivers are supposed to use 'reverse Christmas tree'. It looks
like this function is actually using 'Christmas tree' :-) Please could
you keep with the current coding style.
> @@ -4048,12 +4049,6 @@ static int fec_reset_phy(struct platform_device *pdev)
> if (!err && msec > 1000)
> msec = 1;
>
> - phy_reset = of_get_named_gpio(np, "phy-reset-gpios", 0);
> - if (phy_reset == -EPROBE_DEFER)
> - return phy_reset;
> - else if (!gpio_is_valid(phy_reset))
> - return 0;
> -
> err = of_property_read_u32(np, "phy-reset-post-delay", &phy_post_delay);
> /* valid reset duration should be less than 1s */
> if (!err && phy_post_delay > 1000)
> @@ -4061,11 +4056,13 @@ static int fec_reset_phy(struct platform_device *pdev)
>
> active_high = of_property_read_bool(np, "phy-reset-active-high");
>
> - err = devm_gpio_request_one(&pdev->dev, phy_reset,
> - active_high ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW,
> - "phy-reset");
> - if (err) {
> - dev_err(&pdev->dev, "failed to get phy-reset-gpios: %d\n", err);
> + phy_reset = devm_gpiod_get(&pdev->dev, "phy-reset",
> + active_high ? GPIOD_OUT_HIGH : GPIOD_OUT_LOW);
> + if (IS_ERR(phy_reset)) {
> + err = PTR_ERR(phy_reset);
> + if (err != -EPROBE_DEFER)
> + dev_err(&pdev->dev,
> + "failed to get phy-reset-gpios: %d\n", err);
dev_err_probe() looks usable here.
Andrew
next prev parent reply other threads:[~2023-01-26 18:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-26 13:52 [PATCH] fec: convert to gpio descriptor Arnd Bergmann
2023-01-26 18:02 ` Andrew Lunn [this message]
2023-01-26 20:32 ` Arnd Bergmann
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=Y9LAQRjb6h+ynXBZ@lunn.ch \
--to=andrew@lunn.ch \
--cc=arnd@arndb.de \
--cc=arnd@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=shenwei.wang@nxp.com \
--cc=wei.fang@nxp.com \
--cc=xiaoning.wang@nxp.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;
as well as URLs for NNTP newsgroup(s).