From: Igor Grinberg <grinberg@compulab.co.il>
To: Koen Kooi <koen@dominion.thruhere.net>
Cc: linux-omap@vger.kernel.org, jkridner@beagleboard.org,
linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v2] OMAP3: beagle: add support for beagleboard xM revision C
Date: Fri, 27 May 2011 16:20:55 +0300 [thread overview]
Message-ID: <4DDFA537.1060207@compulab.co.il> (raw)
In-Reply-To: <1306500018-19685-1-git-send-email-koen@dominion.thruhere.net>
Hi Koen,
Please CC LAKML for patches like this,
otherwise Tony, will have to post all of them before pull requesting.
On 05/27/11 15:40, Koen Kooi wrote:
> The USB enable GPIO has been inverted again and the USER button moved.
>
> Future revisions will now fall back to xM rev C instead of unknown.
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
>
> Changes since v1:
> * updated against mainline to take Igors gpio cleanup into account
> * removed xM rev B checks, no boards with that ID were ever produced, rev B boards show up as rev A
> * double checked whitespace:
>
> total: 0 errors, 0 warnings, 89 lines checked
> patches/0001-OMAP3-beagle-add-support-for-beagleboard-xM-revision.patch has no obvious style problems and is ready for submission.
>
> arch/arm/mach-omap2/board-omap3beagle.c | 31 +++++++++++++++++++++++--------
> 1 files changed, 23 insertions(+), 8 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
> index be71426..177769b 100644
> --- a/arch/arm/mach-omap2/board-omap3beagle.c
> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
[...]
> @@ -565,6 +576,10 @@ static void __init omap3_beagle_init(void)
> omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
> omap3_beagle_init_rev();
> omap3_beagle_i2c_init();
> +
> + if (cpu_is_omap3630())
> + gpio_buttons[0].gpio = 4;
Don't get me wrong, I want this patch in mainline as soon as possible.
Just curious, what the hell happened to indentation here? :)
checkpatch.pl does not spot things like this... interesting...
If you want to leave this as is, go ahead, I don't mind, just curious.
--
Regards,
Igor.
WARNING: multiple messages have this Message-ID (diff)
From: grinberg@compulab.co.il (Igor Grinberg)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] OMAP3: beagle: add support for beagleboard xM revision C
Date: Fri, 27 May 2011 16:20:55 +0300 [thread overview]
Message-ID: <4DDFA537.1060207@compulab.co.il> (raw)
In-Reply-To: <1306500018-19685-1-git-send-email-koen@dominion.thruhere.net>
Hi Koen,
Please CC LAKML for patches like this,
otherwise Tony, will have to post all of them before pull requesting.
On 05/27/11 15:40, Koen Kooi wrote:
> The USB enable GPIO has been inverted again and the USER button moved.
>
> Future revisions will now fall back to xM rev C instead of unknown.
>
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
>
> Changes since v1:
> * updated against mainline to take Igors gpio cleanup into account
> * removed xM rev B checks, no boards with that ID were ever produced, rev B boards show up as rev A
> * double checked whitespace:
>
> total: 0 errors, 0 warnings, 89 lines checked
> patches/0001-OMAP3-beagle-add-support-for-beagleboard-xM-revision.patch has no obvious style problems and is ready for submission.
>
> arch/arm/mach-omap2/board-omap3beagle.c | 31 +++++++++++++++++++++++--------
> 1 files changed, 23 insertions(+), 8 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
> index be71426..177769b 100644
> --- a/arch/arm/mach-omap2/board-omap3beagle.c
> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
[...]
> @@ -565,6 +576,10 @@ static void __init omap3_beagle_init(void)
> omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
> omap3_beagle_init_rev();
> omap3_beagle_i2c_init();
> +
> + if (cpu_is_omap3630())
> + gpio_buttons[0].gpio = 4;
Don't get me wrong, I want this patch in mainline as soon as possible.
Just curious, what the hell happened to indentation here? :)
checkpatch.pl does not spot things like this... interesting...
If you want to leave this as is, go ahead, I don't mind, just curious.
--
Regards,
Igor.
next prev parent reply other threads:[~2011-05-27 13:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-27 12:40 [PATCH v2] OMAP3: beagle: add support for beagleboard xM revision C Koen Kooi
2011-05-27 13:20 ` Igor Grinberg [this message]
2011-05-27 13:20 ` Igor Grinberg
2011-05-27 13:35 ` Koen Kooi
2011-05-27 13:35 ` Koen Kooi
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=4DDFA537.1060207@compulab.co.il \
--to=grinberg@compulab.co.il \
--cc=jkridner@beagleboard.org \
--cc=koen@dominion.thruhere.net \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
/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.