From: gregory.clement@free-electrons.com (Gregory CLEMENT)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3] net/macb: add support for resetting PHY using GPIO
Date: Thu, 17 Dec 2015 09:39:32 +0100 [thread overview]
Message-ID: <874mfhtqnv.fsf@free-electrons.com> (raw)
In-Reply-To: <6382531.CWmTLTEYMq@wuerfel> (Arnd Bergmann's message of "Wed, 16 Dec 2015 20:10:14 +0100")
Hi Arnd,
On mer., d?c. 16 2015, Arnd Bergmann <arnd@arndb.de> wrote:
> On Wednesday 16 December 2015 19:31:30 Gregory CLEMENT wrote:
>> diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c
>> index 88c1e1a..35661aa 100644
>> --- a/drivers/net/ethernet/cadence/macb.c
>> +++ b/drivers/net/ethernet/cadence/macb.c
>> @@ -28,6 +28,7 @@
>> #include <linux/phy.h>
>> #include <linux/of.h>
>> #include <linux/of_device.h>
>> +#include <linux/of_gpio.h>
>> #include <linux/of_mdio.h>
>> #include <linux/of_net.h>
>
> Is this the patch that is already in linux-next?
I've just checked and it is the v2 which is in linux-next. David applied
it on Monday in his next branche but I was not aware of it.
David,
if I remebered well you do not remove patch from yout branch. So would
you agree to take a follow-up patch on top of 5833e0526820 "net/macb:
add support for resetting PHY using GPIO" ?
I will fix the error found by Arnd and also use a better device tree
binding (more future proof).
Thanks,
Gregory
>
> I needed an additional
>
> #include <linux/gpio/consumer.h>
>
> to avoid this build error on randconfig builds without GPIOLIB:
>
> drivers/net/ethernet/cadence/macb.c: In function 'macb_probe':
> drivers/net/ethernet/cadence/macb.c:2908:19: error: implicit declaration of function 'devm_gpiod_get_optional' [-Werror=implicit-function-declaration]
> bp->reset_gpio = devm_gpiod_get_optional(&bp->pdev->dev, "phy-reset",
> ^
> drivers/net/ethernet/cadence/macb.c:2909:8: error: 'GPIOD_OUT_HIGH' undeclared (first use in this function)
> GPIOD_OUT_HIGH);
> ^
> drivers/net/ethernet/cadence/macb.c:2909:8: note: each undeclared identifier is reported only once for each function it appears in
> drivers/net/ethernet/cadence/macb.c: In function 'macb_remove':
> drivers/net/ethernet/cadence/macb.c:2979:3: error: implicit declaration of function 'gpiod_set_value' [-Werror=implicit-function-declaration]
>
>
> Arnd
--
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
WARNING: multiple messages have this Message-ID (diff)
From: Gregory CLEMENT <gregory.clement@free-electrons.com>
To: Arnd Bergmann <arnd@arndb.de>, "David S. Miller" <davem@davemloft.net>
Cc: linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
Nicolas Ferre <nicolas.ferre@atmel.com>,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
devicetree@vger.kernel.org, Sascha Hauer <s.hauer@pengutronix.de>,
Russell King <linux@arm.linux.org.uk>
Subject: Re: [PATCH v3] net/macb: add support for resetting PHY using GPIO
Date: Thu, 17 Dec 2015 09:39:32 +0100 [thread overview]
Message-ID: <874mfhtqnv.fsf@free-electrons.com> (raw)
In-Reply-To: <6382531.CWmTLTEYMq@wuerfel> (Arnd Bergmann's message of "Wed, 16 Dec 2015 20:10:14 +0100")
Hi Arnd,
On mer., déc. 16 2015, Arnd Bergmann <arnd@arndb.de> wrote:
> On Wednesday 16 December 2015 19:31:30 Gregory CLEMENT wrote:
>> diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c
>> index 88c1e1a..35661aa 100644
>> --- a/drivers/net/ethernet/cadence/macb.c
>> +++ b/drivers/net/ethernet/cadence/macb.c
>> @@ -28,6 +28,7 @@
>> #include <linux/phy.h>
>> #include <linux/of.h>
>> #include <linux/of_device.h>
>> +#include <linux/of_gpio.h>
>> #include <linux/of_mdio.h>
>> #include <linux/of_net.h>
>
> Is this the patch that is already in linux-next?
I've just checked and it is the v2 which is in linux-next. David applied
it on Monday in his next branche but I was not aware of it.
David,
if I remebered well you do not remove patch from yout branch. So would
you agree to take a follow-up patch on top of 5833e0526820 "net/macb:
add support for resetting PHY using GPIO" ?
I will fix the error found by Arnd and also use a better device tree
binding (more future proof).
Thanks,
Gregory
>
> I needed an additional
>
> #include <linux/gpio/consumer.h>
>
> to avoid this build error on randconfig builds without GPIOLIB:
>
> drivers/net/ethernet/cadence/macb.c: In function 'macb_probe':
> drivers/net/ethernet/cadence/macb.c:2908:19: error: implicit declaration of function 'devm_gpiod_get_optional' [-Werror=implicit-function-declaration]
> bp->reset_gpio = devm_gpiod_get_optional(&bp->pdev->dev, "phy-reset",
> ^
> drivers/net/ethernet/cadence/macb.c:2909:8: error: 'GPIOD_OUT_HIGH' undeclared (first use in this function)
> GPIOD_OUT_HIGH);
> ^
> drivers/net/ethernet/cadence/macb.c:2909:8: note: each undeclared identifier is reported only once for each function it appears in
> drivers/net/ethernet/cadence/macb.c: In function 'macb_remove':
> drivers/net/ethernet/cadence/macb.c:2979:3: error: implicit declaration of function 'gpiod_set_value' [-Werror=implicit-function-declaration]
>
>
> Arnd
--
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
next prev parent reply other threads:[~2015-12-17 8:39 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-16 18:31 [PATCH v3] net/macb: add support for resetting PHY using GPIO Gregory CLEMENT
2015-12-16 18:31 ` Gregory CLEMENT
2015-12-16 18:31 ` Gregory CLEMENT
2015-12-16 19:04 ` Richard Cochran
2015-12-16 19:04 ` Richard Cochran
2015-12-16 19:09 ` Gregory CLEMENT
2015-12-16 19:09 ` Gregory CLEMENT
2015-12-16 19:10 ` Arnd Bergmann
2015-12-16 19:10 ` Arnd Bergmann
2015-12-16 19:10 ` Arnd Bergmann
2015-12-17 8:39 ` Gregory CLEMENT [this message]
2015-12-17 8:39 ` Gregory CLEMENT
2015-12-17 9:51 ` [PATCH] net/macb: Update device tree binding " Gregory CLEMENT
2015-12-17 9:51 ` Gregory CLEMENT
2015-12-17 9:51 ` Gregory CLEMENT
2015-12-17 20:53 ` David Miller
2015-12-17 20:53 ` David Miller
2015-12-17 20:53 ` David Miller
2015-12-17 16:59 ` [PATCH v3] net/macb: add support " David Miller
2015-12-17 16:59 ` David Miller
2015-12-17 16:59 ` David Miller
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=874mfhtqnv.fsf@free-electrons.com \
--to=gregory.clement@free-electrons.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.