ARM: shmobile: r8a7779 pinmux platform device cleanup
Use DEFINE_RES_MEM() to save a couple of lines of code. Signed-off-by: Magnus Damm <damm@opensource.se> [lp: Don't declare r8a7779_pfc_resources as const] Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
This commit is contained in:
parent
3654520cfe
commit
0ccaf5bb3f
|
@ -65,11 +65,7 @@ void __init r8a7779_map_io(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct resource r8a7779_pfc_resources[] = {
|
static struct resource r8a7779_pfc_resources[] = {
|
||||||
[0] = {
|
DEFINE_RES_MEM(0xfffc0000, 0x023c),
|
||||||
.start = 0xfffc0000,
|
|
||||||
.end = 0xfffc023b,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device r8a7779_pfc_device = {
|
static struct platform_device r8a7779_pfc_device = {
|
||||||
|
@ -81,15 +77,8 @@ static struct platform_device r8a7779_pfc_device = {
|
||||||
|
|
||||||
#define R8A7779_GPIO(idx, npins) \
|
#define R8A7779_GPIO(idx, npins) \
|
||||||
static struct resource r8a7779_gpio##idx##_resources[] = { \
|
static struct resource r8a7779_gpio##idx##_resources[] = { \
|
||||||
[0] = { \
|
DEFINE_RES_MEM(0xffc40000 + (0x1000 * (idx)), 0x002c), \
|
||||||
.start = 0xffc40000 + 0x1000 * (idx), \
|
DEFINE_RES_IRQ(gic_iid(0xad + (idx))), \
|
||||||
.end = 0xffc4002b + 0x1000 * (idx), \
|
|
||||||
.flags = IORESOURCE_MEM, \
|
|
||||||
}, \
|
|
||||||
[1] = { \
|
|
||||||
.start = gic_iid(0xad + (idx)), \
|
|
||||||
.flags = IORESOURCE_IRQ, \
|
|
||||||
} \
|
|
||||||
}; \
|
}; \
|
||||||
\
|
\
|
||||||
static struct gpio_rcar_config r8a7779_gpio##idx##_platform_data = { \
|
static struct gpio_rcar_config r8a7779_gpio##idx##_platform_data = { \
|
||||||
|
|
Loading…
Reference in New Issue