diff options
author | Sudhakar Rajashekhara <sudhakar.raj@ti.com> | 2009-08-11 16:14:21 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-08-26 11:55:52 +0300 |
commit | 5a8d5441f4aac3ef0478d5de723422304c611926 (patch) | |
tree | 7429c1de54434c0d92bc5be5ad142e6acbd8a3c1 /arch/arm/mach-davinci/da850.c | |
parent | 53ca5c916971f72262ef37287e17f0a7d980362c (diff) | |
download | talos-op-linux-5a8d5441f4aac3ef0478d5de723422304c611926.tar.gz talos-op-linux-5a8d5441f4aac3ef0478d5de723422304c611926.zip |
davinci: Correct the number of GPIO pins for da850/omap-l138
DA850/OMAP-L138 has 144 pins configurable as GPIO, but
currently this has been configured as 128. This patch
corrects it.
Also, this patch adds the base address for GPIO pins
greater than 128.
Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/da850.c')
-rw-r--r-- | arch/arm/mach-davinci/da850.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index 22205a3727a7..c5efc515df4f 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c @@ -623,7 +623,7 @@ static struct davinci_soc_info davinci_soc_info_da850 = { .intc_irq_num = DA850_N_CP_INTC_IRQ, .timer_info = &da850_timer_info, .gpio_base = IO_ADDRESS(DA8XX_GPIO_BASE), - .gpio_num = 128, + .gpio_num = 144, .gpio_irq = IRQ_DA8XX_GPIO0, .serial_dev = &da8xx_serial_device, .emac_pdata = &da8xx_emac_pdata, |