[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAEExFWujEpQ0F4bGi9Z94=ymRh5nx_3ftwUZfwLhPvaAbHNCrw@mail.gmail.com>
Date: Sun, 29 Dec 2019 18:44:54 +0800
From: Frank Lee <tiny.windzz@...il.com>
To: Jonathan Corbet <corbet@....net>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
bgolaszewski@...libre.com, Arnd Bergmann <arnd@...db.de>,
Stephen Boyd <sboyd@...nel.org>,
Mauro Carvalho Chehab <mchehab+samsung@...nel.org>,
matti.vaittinen@...rohmeurope.com, phil.edworthy@...esas.com,
suzuki.poulose@....com, saravanak@...gle.com,
heikki.krogerus@...ux.intel.com, dan.j.williams@...el.com,
Joe Perches <joe@...ches.com>, jeffrey.t.kirsher@...el.com,
mans@...sr.com, tglx@...utronix.de, hdegoede@...hat.com,
Andrew Morton <akpm@...ux-foundation.org>,
Ulf Hansson <ulf.hansson@...aro.org>, ztuowen@...il.com,
sergei.shtylyov@...entembedded.com, linux-doc@...r.kernel.org,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] platform: goldfish: pipe: switch to platform_get_irq
Ignore this, I posted it just now...
On Sun, Dec 29, 2019 at 6:43 PM Yangtao Li <tiny.windzz@...il.com> wrote:
>
> platform_get_resource(pdev, IORESOURCE_IRQ) is not recommended for
> requesting IRQ's resources, as they can be not ready yet. Using
> platform_get_irq() instead is preferred for getting IRQ even if it
> was not retrieved earlier.
>
> Signed-off-by: Yangtao Li <tiny.windzz@...il.com>
> ---
> drivers/platform/goldfish/goldfish_pipe.c | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/platform/goldfish/goldfish_pipe.c b/drivers/platform/goldfish/goldfish_pipe.c
> index cef0133aa47a..a1ebaec6eea9 100644
> --- a/drivers/platform/goldfish/goldfish_pipe.c
> +++ b/drivers/platform/goldfish/goldfish_pipe.c
> @@ -913,11 +913,9 @@ static int goldfish_pipe_probe(struct platform_device *pdev)
> return -EINVAL;
> }
>
> - r = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
> - if (!r)
> - return -EINVAL;
> -
> - dev->irq = r->start;
> + dev->irq = platform_get_irq(pdev, 0);
> + if (dev->irq < 0)
> + return dev->irq;
>
> /*
> * Exchange the versions with the host device
> --
> 2.17.1
>
Powered by blists - more mailing lists