diff mbox series

[1/2] gpio: zynq: Remove call to platform_get_irq

Message ID 1525687749-14813-1-git-send-email-shubhrajyoti.datta@xilinx.com
State New
Headers show
Series [1/2] gpio: zynq: Remove call to platform_get_irq | expand

Commit Message

Shubhrajyoti Datta May 7, 2018, 10:09 a.m. UTC
Remove the call to  platform_get_irq use the cached
one instead.

Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
---
 drivers/gpio/gpio-zynq.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

--
2.1.1

This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Shubhrajyoti Datta May 7, 2018, 10:30 a.m. UTC | #1
Hi ,
Please ignore will resend.

On Mon, May 7, 2018 at 3:39 PM, Shubhrajyoti Datta
<shubhrajyoti.datta@xilinx.com> wrote:
> Remove the call to  platform_get_irq use the cached
> one instead.
>
> Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
> ---
>  drivers/gpio/gpio-zynq.c | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpio/gpio-zynq.c b/drivers/gpio/gpio-zynq.c
> index 2ffa0ed..7551857 100644
> --- a/drivers/gpio/gpio-zynq.c
> +++ b/drivers/gpio/gpio-zynq.c
> @@ -677,9 +677,8 @@ static void zynq_gpio_restore_context(struct zynq_gpio *gpio)
>  static int __maybe_unused zynq_gpio_suspend(struct device *dev)
>  {
>         struct platform_device *pdev = to_platform_device(dev);
> -       int irq = platform_get_irq(pdev, 0);
> -       struct irq_data *data = irq_get_irq_data(irq);
>         struct zynq_gpio *gpio = platform_get_drvdata(pdev);
> +       struct irq_data *data = irq_get_irq_data(gpio->irq);
>
>         if (!irqd_is_wakeup_set(data)) {
>                 zynq_gpio_save_context(gpio);
> @@ -692,9 +691,8 @@ static int __maybe_unused zynq_gpio_suspend(struct device *dev)
>  static int __maybe_unused zynq_gpio_resume(struct device *dev)
>  {
>         struct platform_device *pdev = to_platform_device(dev);
> -       int irq = platform_get_irq(pdev, 0);
> -       struct irq_data *data = irq_get_irq_data(irq);
>         struct zynq_gpio *gpio = platform_get_drvdata(pdev);
> +       struct irq_data *data = irq_get_irq_data(gpio->irq);
>         int ret;
>
>         if (!irqd_is_wakeup_set(data)) {
> --
> 2.1.1
>
> This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-zynq.c b/drivers/gpio/gpio-zynq.c
index 2ffa0ed..7551857 100644
--- a/drivers/gpio/gpio-zynq.c
+++ b/drivers/gpio/gpio-zynq.c
@@ -677,9 +677,8 @@  static void zynq_gpio_restore_context(struct zynq_gpio *gpio)
 static int __maybe_unused zynq_gpio_suspend(struct device *dev)
 {
        struct platform_device *pdev = to_platform_device(dev);
-       int irq = platform_get_irq(pdev, 0);
-       struct irq_data *data = irq_get_irq_data(irq);
        struct zynq_gpio *gpio = platform_get_drvdata(pdev);
+       struct irq_data *data = irq_get_irq_data(gpio->irq);

        if (!irqd_is_wakeup_set(data)) {
                zynq_gpio_save_context(gpio);
@@ -692,9 +691,8 @@  static int __maybe_unused zynq_gpio_suspend(struct device *dev)
 static int __maybe_unused zynq_gpio_resume(struct device *dev)
 {
        struct platform_device *pdev = to_platform_device(dev);
-       int irq = platform_get_irq(pdev, 0);
-       struct irq_data *data = irq_get_irq_data(irq);
        struct zynq_gpio *gpio = platform_get_drvdata(pdev);
+       struct irq_data *data = irq_get_irq_data(gpio->irq);
        int ret;

        if (!irqd_is_wakeup_set(data)) {