ARM: S3C64XX: Fix the memory mapped GPIOs on Cragganmore
Rather than letting them get allocated dynamically where we don't know where they are, and also name the data line resource as gpio-generic requires that. Without these changes the GPIOs are useless. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
d7d3077a28
commit
91b60b1d5a
2 changed files with 3 additions and 1 deletions
|
@ -21,5 +21,6 @@
|
|||
#define CODEC_GPIO_BASE (GPIO_BOARD_START + 8)
|
||||
#define GLENFARCLAS_PMIC_GPIO_BASE (GPIO_BOARD_START + 32)
|
||||
#define BANFF_PMIC_GPIO_BASE (GPIO_BOARD_START + 64)
|
||||
#define MMGPIO_GPIO_BASE (GPIO_BOARD_START + 96)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -260,6 +260,7 @@ static struct platform_device crag6410_dm9k_device = {
|
|||
|
||||
static struct resource crag6410_mmgpio_resource[] = {
|
||||
[0] = {
|
||||
.name = "dat",
|
||||
.start = S3C64XX_PA_XM0CSN4 + 1,
|
||||
.end = S3C64XX_PA_XM0CSN4 + 1,
|
||||
.flags = IORESOURCE_MEM,
|
||||
|
@ -272,7 +273,7 @@ static struct platform_device crag6410_mmgpio = {
|
|||
.resource = crag6410_mmgpio_resource,
|
||||
.num_resources = ARRAY_SIZE(crag6410_mmgpio_resource),
|
||||
.dev.platform_data = &(struct bgpio_pdata) {
|
||||
.base = -1,
|
||||
.base = MMGPIO_GPIO_BASE,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue