diff options
author | Paul Walmsley <paul@pwsan.com> | 2010-05-18 20:40:25 -0400 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-05-20 14:31:07 -0400 |
commit | 63405360fc8973d28e1c7c0f8e0fc77338a6ce23 (patch) | |
tree | df4d8f278f24350269c26cd59857cefc9db1c42e /arch/arm/plat-omap | |
parent | 435699db6a3d81bfd36d25150177399a4f6048d5 (diff) |
OMAP3 clock: rename RATE_IN_343X, RATE_IN_3430ES2 to match reality
Rename the RATE_IN_343X clksel_rate.rate flag to be RATE_IN_3XXX, to reflect
that these rates are valid on all OMAP3 platforms, not just 343X.
Also rename the RATE_IN_OMAP3430ES2 clksel_rate.rate flag to be
RATE_IN_OMAP3430ES2PLUS, to reflect that these flags are valid on all
OMAP3 platforms after 3430ES2.
This patch should not result in any functional changes.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Richard Woodruff <r-woodruff2@ti.com>
Cc: Rajendra Nayak <rnayak@ti.com>
Cc: Ranjith Lohithakshan <ranjithl@ti.com>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/include/plat/clock.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/include/plat/clock.h b/arch/arm/plat-omap/include/plat/clock.h index 9c551d676c63..dfc472ca0cc4 100644 --- a/arch/arm/plat-omap/include/plat/clock.h +++ b/arch/arm/plat-omap/include/plat/clock.h | |||
@@ -198,12 +198,13 @@ extern struct clk dummy_ck; | |||
198 | /* Clksel_rate flags */ | 198 | /* Clksel_rate flags */ |
199 | #define RATE_IN_242X (1 << 0) | 199 | #define RATE_IN_242X (1 << 0) |
200 | #define RATE_IN_243X (1 << 1) | 200 | #define RATE_IN_243X (1 << 1) |
201 | #define RATE_IN_343X (1 << 2) /* rates common to all 343X */ | 201 | #define RATE_IN_3XXX (1 << 2) /* rates common to all OMAP3 */ |
202 | #define RATE_IN_3430ES2 (1 << 3) /* 3430ES2 rates only */ | 202 | #define RATE_IN_3430ES2 (1 << 3) /* 3430ES2 rates only */ |
203 | #define RATE_IN_36XX (1 << 4) | 203 | #define RATE_IN_36XX (1 << 4) |
204 | #define RATE_IN_4430 (1 << 5) | 204 | #define RATE_IN_4430 (1 << 5) |
205 | 205 | ||
206 | #define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X) | 206 | #define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X) |
207 | 207 | ||
208 | #define RATE_IN_3430ES2PLUS (RATE_IN_3430ES2 | RATE_IN_36XX) | ||
208 | 209 | ||
209 | #endif | 210 | #endif |