aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap1
diff options
context:
space:
mode:
authorCharulatha V <charu@ti.com>2011-05-25 12:44:28 +0530
committerNishanth Menon <nm@ti.com>2011-07-14 11:53:44 -0700
commit313f27dfb83168d749c18216a0f4080add86fc0c (patch)
tree2ea7944f4445c4bd722ab6db59dd28e8f8d96edd /arch/arm/mach-omap1
parent355d05c3540eec8ae34bc8926a896e5a2b762f13 (diff)
downloadkernel_samsung_tuna-313f27dfb83168d749c18216a0f4080add86fc0c.zip
kernel_samsung_tuna-313f27dfb83168d749c18216a0f4080add86fc0c.tar.gz
kernel_samsung_tuna-313f27dfb83168d749c18216a0f4080add86fc0c.tar.bz2
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>
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r--arch/arm/mach-omap1/gpio7xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/gpio7xx.c b/arch/arm/mach-omap1/gpio7xx.c
index 8d25052..3ca9600 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 = {
static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = {
.virtual_irq_start = IH_MPUIO_BASE,
- .bank_width = 32,
.is_mpuio = true,
+ .bank_width = 16,
.bank_stride = 2,
.regs = &omap7xx_mpuio_regs,
};