From: Kevin Hilman <khilman@linaro.org>
To: Joe Perches <joe@perches.com>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>,
Santosh Shilimkar <santosh.shilimkar@ti.com>,
kernel-janitors@vger.kernel.org,
Linus Walleij <linus.walleij@linaro.org>,
linux-omap@vger.kernel.org, linux-gpio@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/5] drivers/gpio/gpio-omap.c: convert comma to semicolon
Date: Mon, 12 Aug 2013 16:15:10 +0000 [thread overview]
Message-ID: <87ob92rilt.fsf@kernel.org> (raw)
In-Reply-To: <1376151231.2083.32.camel@joe-AO722> (Joe Perches's message of "Sat, 10 Aug 2013 09:13:51 -0700")
Joe Perches <joe@perches.com> writes:
> On Sat, 2013-08-10 at 17:40 +0200, Julia Lawall wrote:
>> From: Julia Lawall <Julia.Lawall@lip6.fr>
>> Replace a comma between expression statements by a semicolon.
> []
>> I can't tell if the assignment to ct->regs.mask is really intended to be
>> under the if. The proposed patch preserves the current semantics, but not
>> the current indentation.
>
> I'd suspect more that the indentation is correct
> and the comma use incorrect.
>
> It also looks more like a copy/paste error from
> commit f8b46b583 when the code was restructured
> a bit.
>
> Kevin?
Yes, looks like a copy/paste error. The comma should simply be replaced
by a semi-colon.
Kevin
> --------------------
>
> -#ifdef CONFIG_ARCH_OMAP16XX
> - /* REVISIT: assuming only 16xx supports MPUIO wake events */
> - .irq_set_wake = gpio_wake_enable,
> -#endif
> -};
>
> --------------------
>
> + /* REVISIT: assuming only 16xx supports MPUIO wake events */
> + if (cpu_is_omap16xx())
> + ct->chip.irq_set_wake = gpio_wake_enable,
>
> --------------------
>
>> diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
> []
>> @@ -1029,10 +1029,10 @@ omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
>> ct->chip.irq_unmask = irq_gc_mask_clr_bit;
>> ct->chip.irq_set_type = gpio_irq_type;
>>
>> - if (bank->regs->wkup_en)
>> - ct->chip.irq_set_wake = gpio_wake_enable,
>> -
>> - ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
>> + if (bank->regs->wkup_en) {
>> + ct->chip.irq_set_wake = gpio_wake_enable;
>> + ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
>> + }
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
WARNING: multiple messages have this Message-ID (diff)
From: Kevin Hilman <khilman@linaro.org>
To: Joe Perches <joe@perches.com>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>,
Santosh Shilimkar <santosh.shilimkar@ti.com>,
kernel-janitors@vger.kernel.org,
Linus Walleij <linus.walleij@linaro.org>,
linux-omap@vger.kernel.org, linux-gpio@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/5] drivers/gpio/gpio-omap.c: convert comma to semicolon
Date: Mon, 12 Aug 2013 09:15:10 -0700 [thread overview]
Message-ID: <87ob92rilt.fsf@kernel.org> (raw)
In-Reply-To: <1376151231.2083.32.camel@joe-AO722> (Joe Perches's message of "Sat, 10 Aug 2013 09:13:51 -0700")
Joe Perches <joe@perches.com> writes:
> On Sat, 2013-08-10 at 17:40 +0200, Julia Lawall wrote:
>> From: Julia Lawall <Julia.Lawall@lip6.fr>
>> Replace a comma between expression statements by a semicolon.
> []
>> I can't tell if the assignment to ct->regs.mask is really intended to be
>> under the if. The proposed patch preserves the current semantics, but not
>> the current indentation.
>
> I'd suspect more that the indentation is correct
> and the comma use incorrect.
>
> It also looks more like a copy/paste error from
> commit f8b46b583 when the code was restructured
> a bit.
>
> Kevin?
Yes, looks like a copy/paste error. The comma should simply be replaced
by a semi-colon.
Kevin
> --------------------
>
> -#ifdef CONFIG_ARCH_OMAP16XX
> - /* REVISIT: assuming only 16xx supports MPUIO wake events */
> - .irq_set_wake = gpio_wake_enable,
> -#endif
> -};
>
> --------------------
>
> + /* REVISIT: assuming only 16xx supports MPUIO wake events */
> + if (cpu_is_omap16xx())
> + ct->chip.irq_set_wake = gpio_wake_enable,
>
> --------------------
>
>> diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
> []
>> @@ -1029,10 +1029,10 @@ omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
>> ct->chip.irq_unmask = irq_gc_mask_clr_bit;
>> ct->chip.irq_set_type = gpio_irq_type;
>>
>> - if (bank->regs->wkup_en)
>> - ct->chip.irq_set_wake = gpio_wake_enable,
>> -
>> - ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
>> + if (bank->regs->wkup_en) {
>> + ct->chip.irq_set_wake = gpio_wake_enable;
>> + ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
>> + }
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2013-08-12 16:15 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-10 15:40 [PATCH 0/5] convert comma to semicolon Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 15:40 ` [PATCH 1/5] drivers/gpio/gpio-omap.c: " Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 16:13 ` Joe Perches
2013-08-10 16:13 ` Joe Perches
2013-08-12 16:15 ` Kevin Hilman [this message]
2013-08-12 16:15 ` Kevin Hilman
2013-08-16 15:13 ` Linus Walleij
2013-08-16 15:13 ` Linus Walleij
2013-08-10 15:40 ` [PATCH 2/5] crypto/camellia_generic.c: " Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 16:19 ` Joe Perches
2013-08-10 16:19 ` Joe Perches
2013-08-10 16:19 ` Joe Perches
2013-08-10 16:25 ` Julia Lawall
2013-08-10 16:25 ` Julia Lawall
2013-08-10 15:40 ` [PATCH 3/5] arch/x86/crypto/camellia_glue.c: " Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 15:40 ` [PATCH 4/5] trivial: " Julia Lawall
2013-08-10 15:40 ` Julia Lawall
2013-08-10 15:40 ` [PATCH 5/5] " Julia Lawall
2013-08-10 15:40 ` Julia Lawall
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ob92rilt.fsf@kernel.org \
--to=khilman@linaro.org \
--cc=Julia.Lawall@lip6.fr \
--cc=joe@perches.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=santosh.shilimkar@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.