diff options
author | Charulatha V <charu@ti.com> | 2011-05-25 03:14:28 -0400 |
---|---|---|
committer | Tarun Kanti DebBarma <tarun.kanti@ti.com> | 2012-02-06 03:43:44 -0500 |
commit | ec9af5d9f9399ceb340ee26afcc7d23e9d2a94c2 (patch) | |
tree | a5bde75783f66abd4ac6bca5e3f8cc194268f0f9 | |
parent | d0d665a896c5b9a0aa60e8bac15c270cb59aa9e7 (diff) |
gpio/omap: fix bankwidth for OMAP7xx MPUIO
In all OMAP1 SoCs, the MPUIO bank width is 16 bits. But, in OMAP7xx,
it is wrongly initialised to 32. Fix this.
Signed-off-by: Charulatha V <charu@ti.com>
Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Reviewed-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
-rw-r--r-- | arch/arm/mach-omap1/gpio7xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/gpio7xx.c b/arch/arm/mach-omap1/gpio7xx.c index 433491cb73fa..4771d6b68b96 100644 --- a/arch/arm/mach-omap1/gpio7xx.c +++ b/arch/arm/mach-omap1/gpio7xx.c | |||
@@ -52,8 +52,8 @@ static struct omap_gpio_reg_offs omap7xx_mpuio_regs = { | |||
52 | 52 | ||
53 | static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = { | 53 | static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = { |
54 | .virtual_irq_start = IH_MPUIO_BASE, | 54 | .virtual_irq_start = IH_MPUIO_BASE, |
55 | .bank_width = 32, | ||
56 | .is_mpuio = true, | 55 | .is_mpuio = true, |
56 | .bank_width = 16, | ||
57 | .bank_stride = 2, | 57 | .bank_stride = 2, |
58 | .regs = &omap7xx_mpuio_regs, | 58 | .regs = &omap7xx_mpuio_regs, |
59 | }; | 59 | }; |