Commit 8d0b3bf7 authored by Magnus Damm's avatar Magnus Damm Committed by Simon Horman

ARM: shmobile: Add r8a7790_register_pfc() function

Break out the r8a7790 PFC platform device creation code
to increase readability and follow same style as r8a7791.
Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent 20c6125f
...@@ -34,6 +34,10 @@ static const struct resource pfc_resources[] __initconst = { ...@@ -34,6 +34,10 @@ static const struct resource pfc_resources[] __initconst = {
DEFINE_RES_MEM(0xe6060000, 0x250), DEFINE_RES_MEM(0xe6060000, 0x250),
}; };
#define r8a7790_register_pfc() \
platform_device_register_simple("pfc-r8a7790", -1, pfc_resources, \
ARRAY_SIZE(pfc_resources))
#define R8A7790_GPIO(idx) \ #define R8A7790_GPIO(idx) \
static const struct resource r8a7790_gpio##idx##_resources[] __initconst = { \ static const struct resource r8a7790_gpio##idx##_resources[] __initconst = { \
DEFINE_RES_MEM(0xe6050000 + 0x1000 * (idx), 0x50), \ DEFINE_RES_MEM(0xe6050000 + 0x1000 * (idx), 0x50), \
...@@ -65,8 +69,7 @@ R8A7790_GPIO(5); ...@@ -65,8 +69,7 @@ R8A7790_GPIO(5);
void __init r8a7790_pinmux_init(void) void __init r8a7790_pinmux_init(void)
{ {
platform_device_register_simple("pfc-r8a7790", -1, pfc_resources, r8a7790_register_pfc();
ARRAY_SIZE(pfc_resources));
r8a7790_register_gpio(0); r8a7790_register_gpio(0);
r8a7790_register_gpio(1); r8a7790_register_gpio(1);
r8a7790_register_gpio(2); r8a7790_register_gpio(2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment