From 40a62e452cafaa22f58ac3a6e72a556d960e22ff Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 15 Dec 2012 23:50:58 +0100 Subject: [PATCH] --- yaml --- r: 355352 b: refs/heads/master c: 74494117a5d57302561efa6891c5210ba33f500c h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/arch/arm/mach-shmobile/pfc-r8a7779.c | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index a6317ee780cb..5746b6d644a7 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e48d1988eefd1c160e3183549e8a51cd2b15be04 +refs/heads/master: 74494117a5d57302561efa6891c5210ba33f500c diff --git a/trunk/arch/arm/mach-shmobile/pfc-r8a7779.c b/trunk/arch/arm/mach-shmobile/pfc-r8a7779.c index 9513234d322b..3d333b1de458 100644 --- a/trunk/arch/arm/mach-shmobile/pfc-r8a7779.c +++ b/trunk/arch/arm/mach-shmobile/pfc-r8a7779.c @@ -19,6 +19,7 @@ */ #include #include +#include #include #include #include @@ -2616,9 +2617,6 @@ static struct resource r8a7779_pfc_resources[] = { static struct pinmux_info r8a7779_pinmux_info = { .name = "r8a7779_pfc", - .resource = r8a7779_pfc_resources, - .num_resources = ARRAY_SIZE(r8a7779_pfc_resources), - .unlock_reg = 0xfffc0000, /* PMMR */ .reserved_id = PINMUX_RESERVED, @@ -2639,7 +2637,17 @@ static struct pinmux_info r8a7779_pinmux_info = { .gpio_data_size = ARRAY_SIZE(pinmux_data), }; +static struct platform_device r8a7779_pfc_device = { + .name = "sh-pfc", + .id = -1, + .resource = r8a7779_pfc_resources, + .num_resources = ARRAY_SIZE(r8a7779_pfc_resources), + .dev = { + .platform_data = &r8a7779_pinmux_info, + }, +}; + void r8a7779_pinmux_init(void) { - register_pinmux(&r8a7779_pinmux_info); + platform_device_register(&r8a7779_pfc_device); }