diff options
| author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2012-12-15 17:51:06 -0500 |
|---|---|---|
| committer | Simon Horman <horms+renesas@verge.net.au> | 2013-01-24 19:24:24 -0500 |
| commit | 5946e7bb4401b2b8b8803c9193c569613ab1faa2 (patch) | |
| tree | b24c0e8c5561904958ec1a963f0177fcdcc9512c /arch/sh | |
| parent | b768ecbc5129a11a83aff6f3240bc9c728600c98 (diff) | |
sh: sh7264: Register PFC platform device
Add arch code to register the PFC platform device instead of calling the
driver directly. Platform device registration in the sh-pfc driver will
be removed.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/sh')
| -rw-r--r-- | arch/sh/Kconfig | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 023b2adead62..0626044bd866 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
| @@ -297,6 +297,7 @@ config CPU_SUBTYPE_SH7264 | |||
| 297 | select CPU_HAS_FPU | 297 | select CPU_HAS_FPU |
| 298 | select SYS_SUPPORTS_CMT | 298 | select SYS_SUPPORTS_CMT |
| 299 | select SYS_SUPPORTS_MTU2 | 299 | select SYS_SUPPORTS_MTU2 |
| 300 | select PINCTRL | ||
| 300 | 301 | ||
| 301 | config CPU_SUBTYPE_SH7269 | 302 | config CPU_SUBTYPE_SH7269 |
| 302 | bool "Support SH7269 processor" | 303 | bool "Support SH7269 processor" |
diff --git a/arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c b/arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c index 79a0d6097f29..ed9fc39daa61 100644 --- a/arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c +++ b/arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
| 12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/gpio.h> | 13 | #include <linux/gpio.h> |
| 14 | #include <cpu/pfc.h> | ||
| 14 | #include <cpu/sh7264.h> | 15 | #include <cpu/sh7264.h> |
| 15 | 16 | ||
| 16 | enum { | 17 | enum { |
| @@ -2131,6 +2132,6 @@ static struct pinmux_info sh7264_pinmux_info = { | |||
| 2131 | 2132 | ||
| 2132 | static int __init plat_pinmux_setup(void) | 2133 | static int __init plat_pinmux_setup(void) |
| 2133 | { | 2134 | { |
| 2134 | return register_pinmux(&sh7264_pinmux_info); | 2135 | return sh_pfc_register_info(NULL, NULL, 0, &sh7264_pinmux_info); |
| 2135 | } | 2136 | } |
| 2136 | arch_initcall(plat_pinmux_setup); | 2137 | arch_initcall(plat_pinmux_setup); |
