mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 21:20:51 +07:00
[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>
This commit is contained in:
parent
abcea2c322
commit
2380461423
@ -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] = {
|
||||
|
Loading…
Reference in New Issue
Block a user