diff mbox series

gpio: uniphier: merge fix for "Update irq_domain_ops.activate() signature"

Message ID 1510580176-7483-1-git-send-email-yamada.masahiro@socionext.com
State New
Headers show
Series gpio: uniphier: merge fix for "Update irq_domain_ops.activate() signature" | expand

Commit Message

Masahiro Yamada Nov. 13, 2017, 1:36 p.m. UTC
From: Stephen Rothwell <sfr@canb.auug.org.au>


Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>

---

Changes since Stephens's original post
  - Fix checkpatch.pl warning
    "CHECK: Alignment should match open parenthesis"
  - Stretch lines since it fits in 80-columns


 drivers/gpio/gpio-uniphier.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

-- 
2.7.4

--
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

Linus Walleij Nov. 29, 2017, 1:08 p.m. UTC | #1
Masahiro,

can you check that this ended up all right in the merge window,
else send a fixup patch?

Sorry for the mess.

Yours,
Linus Walleij


On Mon, Nov 13, 2017 at 2:36 PM, Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:
> From: Stephen Rothwell <sfr@canb.auug.org.au>

>

> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>

> ---

>

> Changes since Stephens's original post

>   - Fix checkpatch.pl warning

>     "CHECK: Alignment should match open parenthesis"

>   - Stretch lines since it fits in 80-columns

>

>

>  drivers/gpio/gpio-uniphier.c | 6 ++++--

>  1 file changed, 4 insertions(+), 2 deletions(-)

>

> diff --git a/drivers/gpio/gpio-uniphier.c b/drivers/gpio/gpio-uniphier.c

> index d62cea4..71b768e 100644

> --- a/drivers/gpio/gpio-uniphier.c

> +++ b/drivers/gpio/gpio-uniphier.c

> @@ -300,13 +300,15 @@ static int uniphier_gpio_irq_domain_alloc(struct irq_domain *domain,

>         return irq_domain_alloc_irqs_parent(domain, virq, 1, &parent_fwspec);

>  }

>

> -static void uniphier_gpio_irq_domain_activate(struct irq_domain *domain,

> -                                             struct irq_data *data)

> +static int uniphier_gpio_irq_domain_activate(struct irq_domain *domain,

> +                                            struct irq_data *data, bool early)

>  {

>         struct uniphier_gpio_priv *priv = domain->host_data;

>         struct gpio_chip *chip = &priv->chip;

>

>         gpiochip_lock_as_irq(chip, data->hwirq + UNIPHIER_GPIO_IRQ_OFFSET);

> +

> +       return 0;

>  }

>

>  static void uniphier_gpio_irq_domain_deactivate(struct irq_domain *domain,

> --

> 2.7.4

>

--
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
Masahiro Yamada Nov. 30, 2017, 2:21 a.m. UTC | #2
Hi Linus,

2017-11-29 22:08 GMT+09:00 Linus Walleij <linus.walleij@linaro.org>:
> Masahiro,

>

> can you check that this ended up all right in the merge window,

> else send a fixup patch?

>

> Sorry for the mess.

>

> Yours,

> Linus Walleij

>


Linus Torvalds merged it very nicely.

Everything looks good to me.




> On Mon, Nov 13, 2017 at 2:36 PM, Masahiro Yamada

> <yamada.masahiro@socionext.com> wrote:

>> From: Stephen Rothwell <sfr@canb.auug.org.au>

>>

>> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>

>> ---

>>

>> Changes since Stephens's original post

>>   - Fix checkpatch.pl warning

>>     "CHECK: Alignment should match open parenthesis"

>>   - Stretch lines since it fits in 80-columns

>>

>>

>>  drivers/gpio/gpio-uniphier.c | 6 ++++--

>>  1 file changed, 4 insertions(+), 2 deletions(-)

>>

>> diff --git a/drivers/gpio/gpio-uniphier.c b/drivers/gpio/gpio-uniphier.c

>> index d62cea4..71b768e 100644

>> --- a/drivers/gpio/gpio-uniphier.c

>> +++ b/drivers/gpio/gpio-uniphier.c

>> @@ -300,13 +300,15 @@ static int uniphier_gpio_irq_domain_alloc(struct irq_domain *domain,

>>         return irq_domain_alloc_irqs_parent(domain, virq, 1, &parent_fwspec);

>>  }

>>

>> -static void uniphier_gpio_irq_domain_activate(struct irq_domain *domain,

>> -                                             struct irq_data *data)

>> +static int uniphier_gpio_irq_domain_activate(struct irq_domain *domain,

>> +                                            struct irq_data *data, bool early)

>>  {

>>         struct uniphier_gpio_priv *priv = domain->host_data;

>>         struct gpio_chip *chip = &priv->chip;

>>

>>         gpiochip_lock_as_irq(chip, data->hwirq + UNIPHIER_GPIO_IRQ_OFFSET);

>> +

>> +       return 0;

>>  }

>>

>>  static void uniphier_gpio_irq_domain_deactivate(struct irq_domain *domain,

>> --

>> 2.7.4

>>

> --

> 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




-- 
Best Regards
Masahiro Yamada
--
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-uniphier.c b/drivers/gpio/gpio-uniphier.c
index d62cea4..71b768e 100644
--- a/drivers/gpio/gpio-uniphier.c
+++ b/drivers/gpio/gpio-uniphier.c
@@ -300,13 +300,15 @@  static int uniphier_gpio_irq_domain_alloc(struct irq_domain *domain,
 	return irq_domain_alloc_irqs_parent(domain, virq, 1, &parent_fwspec);
 }
 
-static void uniphier_gpio_irq_domain_activate(struct irq_domain *domain,
-					      struct irq_data *data)
+static int uniphier_gpio_irq_domain_activate(struct irq_domain *domain,
+					     struct irq_data *data, bool early)
 {
 	struct uniphier_gpio_priv *priv = domain->host_data;
 	struct gpio_chip *chip = &priv->chip;
 
 	gpiochip_lock_as_irq(chip, data->hwirq + UNIPHIER_GPIO_IRQ_OFFSET);
+
+	return 0;
 }
 
 static void uniphier_gpio_irq_domain_deactivate(struct irq_domain *domain,