diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-05-15 06:03:24 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-07-12 09:27:53 -0400 |
commit | f62c3f2c35874713ebbb6b6a4b9d9c6caaed4f14 (patch) | |
tree | cddad98c3e62817e4899e5349ea7b8566f4f5e04 /arch | |
parent | 7dcca30a32aadb0520417521b0c44f42d09fe05c (diff) |
[ARM] pxa: remove useless pxa_pm_finish() function
pxa_pm_finish() does nothing but return zero. The core code
does nothing with this return value, and will not try to call
the finish method in the pm_ops structure if it is NULL.
Therefore, we can remove this useless function.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/common/sharpsl_pm.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-pxa/pm.c | 11 |
2 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/common/sharpsl_pm.c b/arch/arm/common/sharpsl_pm.c index 3bf3a927ae22..62cb50816cc6 100644 --- a/arch/arm/common/sharpsl_pm.c +++ b/arch/arm/common/sharpsl_pm.c | |||
@@ -768,7 +768,6 @@ static void sharpsl_apm_get_power_status(struct apm_power_info *info) | |||
768 | static struct pm_ops sharpsl_pm_ops = { | 768 | static struct pm_ops sharpsl_pm_ops = { |
769 | .prepare = pxa_pm_prepare, | 769 | .prepare = pxa_pm_prepare, |
770 | .enter = corgi_pxa_pm_enter, | 770 | .enter = corgi_pxa_pm_enter, |
771 | .finish = pxa_pm_finish, | ||
772 | .valid = pm_valid_only_mem, | 771 | .valid = pm_valid_only_mem, |
773 | }; | 772 | }; |
774 | 773 | ||
diff --git a/arch/arm/mach-pxa/pm.c b/arch/arm/mach-pxa/pm.c index 6bf15ae73848..6d86203aef7b 100644 --- a/arch/arm/mach-pxa/pm.c +++ b/arch/arm/mach-pxa/pm.c | |||
@@ -213,20 +213,9 @@ int pxa_pm_prepare(suspend_state_t state) | |||
213 | 213 | ||
214 | EXPORT_SYMBOL_GPL(pxa_pm_prepare); | 214 | EXPORT_SYMBOL_GPL(pxa_pm_prepare); |
215 | 215 | ||
216 | /* | ||
217 | * Called after devices are re-setup, but before processes are thawed. | ||
218 | */ | ||
219 | int pxa_pm_finish(suspend_state_t state) | ||
220 | { | ||
221 | return 0; | ||
222 | } | ||
223 | |||
224 | EXPORT_SYMBOL_GPL(pxa_pm_finish); | ||
225 | |||
226 | static struct pm_ops pxa_pm_ops = { | 216 | static struct pm_ops pxa_pm_ops = { |
227 | .prepare = pxa_pm_prepare, | 217 | .prepare = pxa_pm_prepare, |
228 | .enter = pxa_pm_enter, | 218 | .enter = pxa_pm_enter, |
229 | .finish = pxa_pm_finish, | ||
230 | .valid = pm_valid_only_mem, | 219 | .valid = pm_valid_only_mem, |
231 | }; | 220 | }; |
232 | 221 | ||