diff --git a/[refs] b/[refs] index bebcfb052b15..edfb9e4f86ce 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 49a8dd66c5bb224878cacc7eccb523e30ccaedc9 +refs/heads/master: 38e9623e2639fafb5d471c0f1ed8a3e707d383cf diff --git a/trunk/arch/arm/mach-shmobile/pfc-r8a7740.c b/trunk/arch/arm/mach-shmobile/pfc-r8a7740.c index 8a412b11d4f1..84ef85d80536 100644 --- a/trunk/arch/arm/mach-shmobile/pfc-r8a7740.c +++ b/trunk/arch/arm/mach-shmobile/pfc-r8a7740.c @@ -18,7 +18,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 @@ -2612,9 +2614,24 @@ static struct pinmux_info r8a7740_pinmux_info = { .gpio_irq_size = ARRAY_SIZE(pinmux_irqs), }; +static struct resource r8a7740_pfc_resources[] = { + [0] = { + .start = 0xe6050000, + .end = 0xe6057fff, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = 0xe605800c, + .end = 0xe605802b, + .flags = IORESOURCE_MEM, + } +}; + static struct platform_device r8a7740_pfc_device = { .name = "sh-pfc", .id = -1, + .resource = r8a7740_pfc_resources, + .num_resources = ARRAY_SIZE(r8a7740_pfc_resources), .dev = { .platform_data = &r8a7740_pinmux_info, },