From 388e3a547187a5c9564aba74b83c43ac953e7ea6 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 15 Dec 2012 23:51:02 +0100 Subject: [PATCH] --- yaml --- r: 355356 b: refs/heads/master c: 3bdd190670490143007e9e34a850a400074b83fa h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/arch/arm/mach-shmobile/pfc-sh7372.c | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index edfb9e4f86ce..15480b2288df 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 38e9623e2639fafb5d471c0f1ed8a3e707d383cf +refs/heads/master: 3bdd190670490143007e9e34a850a400074b83fa diff --git a/trunk/arch/arm/mach-shmobile/pfc-sh7372.c b/trunk/arch/arm/mach-shmobile/pfc-sh7372.c index dd5e145eeb07..91016b48e78c 100644 --- a/trunk/arch/arm/mach-shmobile/pfc-sh7372.c +++ b/trunk/arch/arm/mach-shmobile/pfc-sh7372.c @@ -20,7 +20,9 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include #include +#include #include #include #include @@ -1658,9 +1660,24 @@ static struct pinmux_info sh7372_pinmux_info = { .gpio_irq_size = ARRAY_SIZE(pinmux_irqs), }; +static struct resource sh7372_pfc_resources[] = { + [0] = { + .start = 0xe6050000, + .end = 0xe6057fff, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = 0xe605800c, + .end = 0xe6058027, + .flags = IORESOURCE_MEM, + } +}; + static struct platform_device sh7372_pfc_device = { .name = "sh-pfc", .id = -1, + .resource = sh7372_pfc_resources, + .num_resources = ARRAY_SIZE(sh7372_pfc_resources), .dev = { .platform_data = &sh7372_pinmux_info, },