2013-06-17 09:52:59

by Sachin Kamat

[permalink] [raw]
Subject: [PATCH Resend] pinctrl: exynos: Fix build breakage

'exynos_wkup_irq_ack' should be defined ahead of its call.

Fixes the following error:
drivers/pinctrl/pinctrl-exynos.c: In function ‘exynos_wkup_irq_mask’:
drivers/pinctrl/pinctrl-exynos.c:299:3: error: implicit declaration of
function ‘exynos_wkup_irq_ack’ [-Werror=implicit-function-declaration]
exynos_wkup_irq_ack(irqd);

Signed-off-by: Sachin Kamat <[email protected]>
Cc: Doug Anderson <[email protected]>
---
Fixed the commit message.
---

drivers/pinctrl/pinctrl-exynos.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/pinctrl/pinctrl-exynos.c b/drivers/pinctrl/pinctrl-exynos.c
index 8cd5bf5..f9277bc 100644
--- a/drivers/pinctrl/pinctrl-exynos.c
+++ b/drivers/pinctrl/pinctrl-exynos.c
@@ -279,6 +279,15 @@ err_domains:
return ret;
}

+static void exynos_wkup_irq_ack(struct irq_data *irqd)
+{
+ struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
+ struct samsung_pinctrl_drv_data *d = b->drvdata;
+ unsigned long pend = d->ctrl->weint_pend + b->eint_offset;
+
+ writel(1 << irqd->hwirq, d->virt_base + pend);
+}
+
static void exynos_wkup_irq_mask(struct irq_data *irqd)
{
struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
@@ -307,15 +316,6 @@ static void exynos_wkup_irq_mask(struct irq_data *irqd)
spin_unlock_irqrestore(&b->slock, flags);
}

-static void exynos_wkup_irq_ack(struct irq_data *irqd)
-{
- struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
- struct samsung_pinctrl_drv_data *d = b->drvdata;
- unsigned long pend = d->ctrl->weint_pend + b->eint_offset;
-
- writel(1 << irqd->hwirq, d->virt_base + pend);
-}
-
static void exynos_wkup_irq_unmask(struct irq_data *irqd)
{
struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
--
1.7.9.5


2013-06-17 11:26:01

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH Resend] pinctrl: exynos: Fix build breakage

On Mon, Jun 17, 2013 at 11:38 AM, Sachin Kamat <[email protected]> wrote:

> 'exynos_wkup_irq_ack' should be defined ahead of its call.
>
> Fixes the following error:
> drivers/pinctrl/pinctrl-exynos.c: In function ?exynos_wkup_irq_mask?:
> drivers/pinctrl/pinctrl-exynos.c:299:3: error: implicit declaration of
> function ?exynos_wkup_irq_ack? [-Werror=implicit-function-declaration]
> exynos_wkup_irq_ack(irqd);
>
> Signed-off-by: Sachin Kamat <[email protected]>
> Cc: Doug Anderson <[email protected]>
> ---
> Fixed the commit message.
> ---

Applied.

Usually you should state which commit caused
the problem in the commit message.

Yours,
Linus Walleij

2013-06-17 11:46:03

by Sachin Kamat

[permalink] [raw]
Subject: Re: [PATCH Resend] pinctrl: exynos: Fix build breakage

On 17 June 2013 16:55, Linus Walleij <[email protected]> wrote:
> On Mon, Jun 17, 2013 at 11:38 AM, Sachin Kamat <[email protected]> wrote:
>
>> 'exynos_wkup_irq_ack' should be defined ahead of its call.
>>
>> Fixes the following error:
>> drivers/pinctrl/pinctrl-exynos.c: In function ?exynos_wkup_irq_mask?:
>> drivers/pinctrl/pinctrl-exynos.c:299:3: error: implicit declaration of
>> function ?exynos_wkup_irq_ack? [-Werror=implicit-function-declaration]
>> exynos_wkup_irq_ack(irqd);
>>
>> Signed-off-by: Sachin Kamat <[email protected]>
>> Cc: Doug Anderson <[email protected]>
>> ---
>> Fixed the commit message.
>> ---
>
> Applied.

Thanks.

>
> Usually you should state which commit caused
> the problem in the commit message.

Usually I do. But in this case it was not caused by a single commit
per se but a combination.
Hence I wasn't sure if I should mention both as the ones causing it.


--
With warm regards,
Sachin

2013-06-17 11:58:09

by Tomasz Figa

[permalink] [raw]
Subject: Re: [PATCH Resend] pinctrl: exynos: Fix build breakage

Hi Sachin,

On Monday 17 of June 2013 15:08:12 Sachin Kamat wrote:
> 'exynos_wkup_irq_ack' should be defined ahead of its call.
>
> Fixes the following error:
> drivers/pinctrl/pinctrl-exynos.c: In function ‘exynos_wkup_irq_mask’:
> drivers/pinctrl/pinctrl-exynos.c:299:3: error: implicit declaration of
> function ‘exynos_wkup_irq_ack’ [-Werror=implicit-function-declaration]
> exynos_wkup_irq_ack(irqd);
>
> Signed-off-by: Sachin Kamat <[email protected]>
> Cc: Doug Anderson <[email protected]>
> ---
> Fixed the commit message.
> ---

This patch is incorrect.

Compilation error is caused by merge error of Doug's patch:

pinctrl: exynos: ack level-triggered interrupts before unmasking

hunk of which went to wrong function - mask instead of unmask.

Linus, could you fix it?

Best regards,
Tomasz

> drivers/pinctrl/pinctrl-exynos.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/pinctrl/pinctrl-exynos.c
> b/drivers/pinctrl/pinctrl-exynos.c index 8cd5bf5..f9277bc 100644
> --- a/drivers/pinctrl/pinctrl-exynos.c
> +++ b/drivers/pinctrl/pinctrl-exynos.c
> @@ -279,6 +279,15 @@ err_domains:
> return ret;
> }
>
> +static void exynos_wkup_irq_ack(struct irq_data *irqd)
> +{
> + struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
> + struct samsung_pinctrl_drv_data *d = b->drvdata;
> + unsigned long pend = d->ctrl->weint_pend + b->eint_offset;
> +
> + writel(1 << irqd->hwirq, d->virt_base + pend);
> +}
> +
> static void exynos_wkup_irq_mask(struct irq_data *irqd)
> {
> struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
> @@ -307,15 +316,6 @@ static void exynos_wkup_irq_mask(struct irq_data *irqd)
> spin_unlock_irqrestore(&b->slock, flags);
> }
>
> -static void exynos_wkup_irq_ack(struct irq_data *irqd)
> -{
> - struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);
> - struct samsung_pinctrl_drv_data *d = b->drvdata;
> - unsigned long pend = d->ctrl->weint_pend + b->eint_offset;
> -
> - writel(1 << irqd->hwirq, d->virt_base + pend);
> -}
> -
> static void exynos_wkup_irq_unmask(struct irq_data *irqd)
> {
> struct samsung_pin_bank *b = irq_data_get_irq_chip_data(irqd);

2013-06-17 16:18:41

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH Resend] pinctrl: exynos: Fix build breakage

On Mon, Jun 17, 2013 at 1:57 PM, Tomasz Figa <[email protected]> wrote:
> On Monday 17 of June 2013 15:08:12 Sachin Kamat wrote:
>> 'exynos_wkup_irq_ack' should be defined ahead of its call.
>>
>> Fixes the following error:
>> drivers/pinctrl/pinctrl-exynos.c: In function ?exynos_wkup_irq_mask?:
>> drivers/pinctrl/pinctrl-exynos.c:299:3: error: implicit declaration of
>> function ?exynos_wkup_irq_ack? [-Werror=implicit-function-declaration]
>> exynos_wkup_irq_ack(irqd);
>>
>> Signed-off-by: Sachin Kamat <[email protected]>
>> Cc: Doug Anderson <[email protected]>
>> ---
>> Fixed the commit message.
>> ---
>
> This patch is incorrect.
>
> Compilation error is caused by merge error of Doug's patch:
>
> pinctrl: exynos: ack level-triggered interrupts before unmasking
>
> hunk of which went to wrong function - mask instead of unmask.

OK probably I just had git am fail on me and used
patch -p1 < ...

> Linus, could you fix it?

No I'm afraid I will cause more trouble.

I took out Doug's commit and this fi from my tree.

Doug, can you respin the patch
"pinctrl: exynos: ack level-triggered interrupts before unmasking"

On top of my "devel" branch?

Yours,
Linus Walleij

2013-06-17 16:51:26

by Doug Anderson

[permalink] [raw]
Subject: Re: [PATCH Resend] pinctrl: exynos: Fix build breakage

Linus,

On Mon, Jun 17, 2013 at 9:18 AM, Linus Walleij <[email protected]> wrote:
> On Mon, Jun 17, 2013 at 1:57 PM, Tomasz Figa <[email protected]> wrote:
>> On Monday 17 of June 2013 15:08:12 Sachin Kamat wrote:
>>> 'exynos_wkup_irq_ack' should be defined ahead of its call.
>>>
>>> Fixes the following error:
>>> drivers/pinctrl/pinctrl-exynos.c: In function ?exynos_wkup_irq_mask?:
>>> drivers/pinctrl/pinctrl-exynos.c:299:3: error: implicit declaration of
>>> function ?exynos_wkup_irq_ack? [-Werror=implicit-function-declaration]
>>> exynos_wkup_irq_ack(irqd);
>>>
>>> Signed-off-by: Sachin Kamat <[email protected]>
>>> Cc: Doug Anderson <[email protected]>
>>> ---
>>> Fixed the commit message.
>>> ---
>>
>> This patch is incorrect.
>>
>> Compilation error is caused by merge error of Doug's patch:
>>
>> pinctrl: exynos: ack level-triggered interrupts before unmasking
>>
>> hunk of which went to wrong function - mask instead of unmask.
>
> OK probably I just had git am fail on me and used
> patch -p1 < ...
>
>> Linus, could you fix it?
>
> No I'm afraid I will cause more trouble.
>
> I took out Doug's commit and this fi from my tree.
>
> Doug, can you respin the patch
> "pinctrl: exynos: ack level-triggered interrupts before unmasking"
>
> On top of my "devel" branch?

OK, sent. :)

-Doug