diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2007-09-19 04:33:55 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-10-12 16:15:26 -0400 |
commit | a7073b8b47651ce2ed27564ed8395eff81120c58 (patch) | |
tree | 78b355cbeb11f50730d5a065502a3b424183ba58 /include/asm-arm/arch-pxa | |
parent | a88a447d44648f1dfba4c40b3f4b6f75597150ed (diff) |
[ARM] pxa: mark pxa_set_cken deprecated
Allow the generic clock support code to fiddle with the CKEN register
and mark pxa_set_cken() deprecated.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-pxa')
-rw-r--r-- | include/asm-arm/arch-pxa/hardware.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-arm/arch-pxa/hardware.h b/include/asm-arm/arch-pxa/hardware.h index 68e7b430ac80..538a34e39e92 100644 --- a/include/asm-arm/arch-pxa/hardware.h +++ b/include/asm-arm/arch-pxa/hardware.h | |||
@@ -116,7 +116,11 @@ extern void pxa_gpio_set_value(unsigned gpio, int value); | |||
116 | /* | 116 | /* |
117 | * Routine to enable or disable CKEN | 117 | * Routine to enable or disable CKEN |
118 | */ | 118 | */ |
119 | extern void pxa_set_cken(int clock, int enable); | 119 | static inline void __deprecated pxa_set_cken(int clock, int enable) |
120 | { | ||
121 | extern void __pxa_set_cken(int clock, int enable); | ||
122 | __pxa_set_cken(clock, enable); | ||
123 | } | ||
120 | 124 | ||
121 | /* | 125 | /* |
122 | * return current memory and LCD clock frequency in units of 10kHz | 126 | * return current memory and LCD clock frequency in units of 10kHz |