diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2009-02-09 19:34:05 +0300 |
---|---|---|
committer | Eric Miao <eric.miao@marvell.com> | 2009-03-09 16:22:33 +0300 |
commit | 23804614230be43185b7d9b5ef97a8b87375c3cc (patch) | |
tree | 9ea34fbe48651acc40cfb53d5ec964ca2c0f7438 /arch/arm/mach-pxa | |
parent | abcea2c322cef559ef2f108b4763d107a5ccc37f (diff) | |
download | linux-23804614230be43185b7d9b5ef97a8b87375c3cc.tar.xz |
[ARM] pxa/magician: fix htc-egpio resource size
Fixes an off-by-one error.
Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/magician.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/magician.c b/arch/arm/mach-pxa/magician.c index af464870c129..7fd31235c26e 100644 --- a/arch/arm/mach-pxa/magician.c +++ b/arch/arm/mach-pxa/magician.c @@ -204,7 +204,7 @@ static struct platform_device gpio_keys = { static struct resource egpio_resources[] = { [0] = { .start = PXA_CS3_PHYS, - .end = PXA_CS3_PHYS + 0x20, + .end = PXA_CS3_PHYS + 0x20 - 1, .flags = IORESOURCE_MEM, }, [1] = { |