diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2009-10-20 01:37:21 +0200 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2009-10-20 01:37:21 +0200 |
commit | 37715953219910e604fb6514ade8db2722af1c0c (patch) | |
tree | e75389a733939d71a12c8e685aab30ae309e132d | |
parent | 5a4f431217881c3066e563098323b67fbd290d54 (diff) |
Mark pmu probe callback __devinit
-rw-r--r-- | arch/arm/mach-s3c2410/mach-gta01.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-s3c2410/mach-gta01.c b/arch/arm/mach-s3c2410/mach-gta01.c index 3f0c7c03e5f..c559a28d442 100644 --- a/arch/arm/mach-s3c2410/mach-gta01.c +++ b/arch/arm/mach-s3c2410/mach-gta01.c @@ -286,7 +286,7 @@ static struct platform_device gta01_bat = { }; #endif -static void gta01_pcf_probe_done(struct pcf50606 *pcf) +static void __devinit gta01_pcf_probe_done(struct pcf50606 *pcf) { gta01_pcf = pcf; @@ -840,11 +840,11 @@ static struct platform_device *gta01_devices[] __initdata = { >a01_pm_gsm_dev, }; -static struct platform_device *gta01_pmu_child_devices[] __initdata = { +static struct platform_device *gta01_pmu_child_devices[] __devinitdata = { >a01_lcm_spigpio_device, }; -static void gta01_pmu_attach_child_devices(struct pcf50606 *pcf) +static void __devinit gta01_pmu_attach_child_devices(struct pcf50606 *pcf) { size_t i; |