| To: | Jamie Iles <jamie@jamieiles.com> |
|---|---|
| Subject: | Re: [PATCH 2/3] WATCHDOG: mtx1-wdt: request gpio before using it |
| From: | Florian Fainelli <florian@openwrt.org> |
| Date: | Fri, 10 Jun 2011 17:34:34 +0200 |
| Cc: | Wim Van Sebroeck <wim@iguana.be>, linux-mips@linux-mips.org, linux-watchdog@vger.kernel.org, Manuel Lauss <manuel.lauss@googlemail.com>, stable@kernel.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:from:organization:to:subject:date :user-agent:cc:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=ZKKnTVMzMz79HTn0QkhyyXytmx0I3C8517LYn16b6kA=; b=YhkmRA7VzZBuqN7KuOOHr4zdjj4tx/Trw45EX2ii5kFiadfX6dDy0E5YJJ1peqoEGt Z8Nfk5bsrtJQtP6yGYy+Fot9pvwl8tnzPyIQwZFGa1yw/5Y6/wxSa04t5/CbYR33YhrE 7T3bVYbjxN71kxXxENdWcGOazQVTv7Q5pf1Z4= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:organization:to:subject:date:user-agent:cc:references :in-reply-to:mime-version:content-type:content-transfer-encoding :message-id; b=ItXlKMH0E++5MZmBsm2RUVVgx7V7P4iGO3KGiVfceXD9GZW3UrEd9j7M+Y4MtZ+YfR Bs76aauZhUdkN6ppsavXnIYJL+fbSyXqKU0mbXGBiZI7lVlRZ7p4FYfP4Kw+K/Gpz3WX LmBu+elWf9l35sNf8lBH3BCgqi0HT8VRishdg= |
| In-reply-to: | <20110607095847.GB21174@pulham.picochip.com> |
| Organization: | OpenWrt |
| References: | <201106021454.20111.florian@openwrt.org> <20110607095847.GB21174@pulham.picochip.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | KMail/1.13.6 (Linux/2.6.38-8-server; KDE/4.6.2; x86_64; ; ) |
Hello Jamie,
On Tuesday 07 June 2011 11:58:47 Jamie Iles wrote:
> On Thu, Jun 02, 2011 at 02:54:20PM +0200, Florian Fainelli wrote:
> > Otherwise, the gpiolib autorequest feature will produce a WARN_ON():
> >
> > WARNING: at drivers/gpio/gpiolib.c:101 0x8020ec6c()
> > autorequest GPIO-215
> > [...]
> >
> > CC: stable@kernel.org
> > Signed-off-by: Florian Fainelli <florian@openwrt.org>
> > ---
> > diff --git a/drivers/watchdog/mtx-1_wdt.c b/drivers/watchdog/mtx-1_wdt.c
> > index 63df28c..16086f8 100644
> > --- a/drivers/watchdog/mtx-1_wdt.c
> > +++ b/drivers/watchdog/mtx-1_wdt.c
> > @@ -214,6 +214,11 @@ static int __devinit mtx1_wdt_probe(struct
> > platform_device *pdev)
> >
> > int ret;
> >
> > mtx1_wdt_device.gpio = pdev->resource[0].start;
> >
> > + ret = gpio_request(mtx1_wdt_device.gpio, "mtx1-wdt");
> > + if (ret < 0) {
> > + dev_err(&pdev->dev, "failed to request gpio");
> > + return ret;
> > + }
>
> Could you use gpio_request_one() here to make sure the GPIO is in the
> correct direction first?
Makes sense, I will respin a v2 of these.
--
Florian
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] PCI: Make the struct pci_dev * argument of pci_fixup_irqs const., Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH 3/3] WATCHDOG: mtx1-wdt: fix GPIO toggling, Florian Fainelli |
| Previous by Thread: | Re: [PATCH 2/3] WATCHDOG: mtx1-wdt: request gpio before using it, Jamie Iles |
| Next by Thread: | [PATCH 3/3] WATCHDOG: mtx1-wdt: fix GPIO toggling, Florian Fainelli |
| Indexes: | [Date] [Thread] [Top] [All Lists] |