All of lore.kernel.org
 help / color / mirror / Atom feed
From: u.kleine-koenig@pengutronix.de (Uwe Kleine-König)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 2/6] ARM: mxs: make ssp error irq definition consistent
Date: Tue, 22 Feb 2011 09:20:08 +0100	[thread overview]
Message-ID: <20110222082008.GT22310@pengutronix.de> (raw)
In-Reply-To: <1298284979-14853-3-git-send-email-shawn.guo@freescale.com>

On Mon, Feb 21, 2011 at 06:42:55PM +0800, Shawn Guo wrote:
> Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
> ---
>  arch/arm/mach-mxs/include/mach/mx23.h |    2 +-
>  arch/arm/mach-mxs/include/mach/mx28.h |    8 ++++----
>  2 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/arch/arm/mach-mxs/include/mach/mx23.h b/arch/arm/mach-mxs/include/mach/mx23.h
> index 1730c9c..e858692 100644
> --- a/arch/arm/mach-mxs/include/mach/mx23.h
> +++ b/arch/arm/mach-mxs/include/mach/mx23.h
> @@ -93,7 +93,7 @@
>  #define MX23_INT_USB_WAKEUP		12
>  #define MX23_INT_GPMI_DMA		13
>  #define MX23_INT_SSP1_DMA		14
> -#define MX23_INT_SSP_ERROR		15
> +#define MX23_INT_SSP1_ERROR		15
SSP_ERROR matches the reference manual, but using SSP1 looks correct as
there are >1 SSPs.

>  #define MX23_INT_GPIO0			16
>  #define MX23_INT_GPIO1			17
>  #define MX23_INT_GPIO2			18
> diff --git a/arch/arm/mach-mxs/include/mach/mx28.h b/arch/arm/mach-mxs/include/mach/mx28.h
> index 3f3485a..75d8611 100644
> --- a/arch/arm/mach-mxs/include/mach/mx28.h
> +++ b/arch/arm/mach-mxs/include/mach/mx28.h
> @@ -163,10 +163,10 @@
>  #define MX28_INT_USB0			93
>  #define MX28_INT_USB1_WAKEUP		94
>  #define MX28_INT_USB0_WAKEUP		95
> -#define MX28_INT_SSP0			96
> -#define MX28_INT_SSP1			97
> -#define MX28_INT_SSP2			98
> -#define MX28_INT_SSP3			99
> +#define MX28_INT_SSP0_ERROR		96
> +#define MX28_INT_SSP1_ERROR		97
> +#define MX28_INT_SSP2_ERROR		98
> +#define MX28_INT_SSP3_ERROR		99
>  #define MX28_INT_ENET_SWI		100
>  #define MX28_INT_ENET_MAC0		101
>  #define MX28_INT_ENET_MAC1		102
Acked-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

  reply	other threads:[~2011-02-22  8:20 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-21 10:42 [PATCH v3] Add mmc device for i.MX23/28 Shawn Guo
2011-02-21 10:42 ` [PATCH v3 1/6] ARM: mxs/clock: fix base address missing in name##_set_parent Shawn Guo
2011-02-21 10:42 ` [PATCH v3 2/6] ARM: mxs: make ssp error irq definition consistent Shawn Guo
2011-02-22  8:20   ` Uwe Kleine-König [this message]
2011-02-21 10:42 ` [PATCH v3 3/6] ARM: mxs: dynamically allocate mmc device Shawn Guo
2011-02-22  8:31   ` Uwe Kleine-König
2011-02-22 12:39     ` Shawn Guo
2011-02-22 18:33       ` Uwe Kleine-König
2011-03-16 10:31         ` [PATCH v4 " Uwe Kleine-König
2011-02-21 10:42 ` [PATCH v3 4/6] ARM: mxs: fix typo "GPO" in iomux-mx23.h Shawn Guo
2011-02-25 20:55   ` Uwe Kleine-König
2011-02-21 10:42 ` [PATCH v3 5/6] ARM: mxs/mx23evk: add mmc device Shawn Guo
2011-02-21 17:42   ` Wolfram Sang
2011-02-22  8:33   ` Uwe Kleine-König
2011-02-22 12:22     ` Shawn Guo
2011-02-22  8:49   ` [PATCH v4] " Shawn Guo
2011-02-22 10:35     ` Wolfram Sang
2011-02-21 10:42 ` [PATCH v3 6/6] ARM: mxs/mx28evk: " Shawn Guo
2011-02-22  8:50   ` [PATCH v4] " Shawn Guo
2011-02-22 10:35     ` Wolfram Sang
2011-03-25 11:46     ` mx28 sdio problems (was: Re: [PATCH v4] ARM: mxs/mx28evk: add mmc device) Marc Kleine-Budde
2011-03-26 14:13       ` Shawn Guo
2011-03-29 10:05         ` mx28 sdio problems Marc Kleine-Budde
2011-02-21 17:40 ` [PATCH v3] Add mmc device for i.MX23/28 Wolfram Sang

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=20110222082008.GT22310@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.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.