diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-04-26 07:42:34 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-05-08 16:36:16 +0400 |
commit | 8321b758e08cae7fb02663f26efee4ba985c2ae5 (patch) | |
tree | 1a755f00abb35103c2c553eeb97616949faf91b6 /arch/arm/mach-imx/mach-pcm037_eet.c | |
parent | bb13fabcca35fbce73f8cfbf238dacfa2a223006 (diff) | |
download | linux-8321b758e08cae7fb02663f26efee4ba985c2ae5.tar.xz |
ARM: imx: use machine specific hook for late init
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/mach-pcm037_eet.c')
-rw-r--r-- | arch/arm/mach-imx/mach-pcm037_eet.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-imx/mach-pcm037_eet.c b/arch/arm/mach-imx/mach-pcm037_eet.c index 1b7606bef8f4..11ffa81ad17d 100644 --- a/arch/arm/mach-imx/mach-pcm037_eet.c +++ b/arch/arm/mach-imx/mach-pcm037_eet.c @@ -160,9 +160,9 @@ static const struct gpio_keys_platform_data .rep = 0, /* No auto-repeat */ }; -static int __init eet_init_devices(void) +int __init pcm037_eet_init_devices(void) { - if (!machine_is_pcm037() || pcm037_variant() != PCM037_EET) + if (pcm037_variant() != PCM037_EET) return 0; mxc_iomux_setup_multiple_pins(pcm037_eet_pins, @@ -176,4 +176,3 @@ static int __init eet_init_devices(void) return 0; } -late_initcall(eet_init_devices); |