aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa/clock.h
diff options
context:
space:
mode:
authorEric Miao <eric.y.miao@gmail.com>2010-11-21 20:41:39 -0500
committerEric Miao <eric.y.miao@gmail.com>2010-12-16 01:31:19 -0500
commit2e8581e756ddbd0dea8b0d4059e9a82d2929de01 (patch)
tree0dcae8c0023c749c776737a84a4e0efa62efe9f1 /arch/arm/mach-pxa/clock.h
parentbb71bdd31b48efa2b9834f1a47eb5f657e3c217c (diff)
ARM: pxa: replace duplicated macro DEFINE_PXA3_CK() with DEFINE_CK()
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa/clock.h')
-rw-r--r--arch/arm/mach-pxa/clock.h22
1 files changed, 8 insertions, 14 deletions
diff --git a/arch/arm/mach-pxa/clock.h b/arch/arm/mach-pxa/clock.h
index d8488742b807..f09ecb1a379e 100644
--- a/arch/arm/mach-pxa/clock.h
+++ b/arch/arm/mach-pxa/clock.h
@@ -21,14 +21,6 @@ struct clk {
21 .con_id = _conname, \ 21 .con_id = _conname, \
22 } 22 }
23 23
24#define DEFINE_CKEN(_name, _cken, _rate, _delay) \
25struct clk clk_##_name = { \
26 .ops = &clk_cken_ops, \
27 .rate = _rate, \
28 .cken = CKEN_##_cken, \
29 .delay = _delay, \
30 }
31
32#define DEFINE_CK(_name, _cken, _ops) \ 24#define DEFINE_CK(_name, _cken, _ops) \
33struct clk clk_##_name = { \ 25struct clk clk_##_name = { \
34 .ops = _ops, \ 26 .ops = _ops, \
@@ -42,6 +34,14 @@ struct clk clk_##_name = { \
42 .delay = _delay, \ 34 .delay = _delay, \
43 } 35 }
44 36
37#define DEFINE_CKEN(_name, _cken, _rate, _delay) \
38struct clk clk_##_name = { \
39 .ops = &clk_cken_ops, \
40 .rate = _rate, \
41 .cken = CKEN_##_cken, \
42 .delay = _delay, \
43 }
44
45extern const struct clkops clk_cken_ops; 45extern const struct clkops clk_cken_ops;
46 46
47void clk_cken_enable(struct clk *clk); 47void clk_cken_enable(struct clk *clk);
@@ -56,12 +56,6 @@ struct clk clk_##_name = { \
56 .delay = _delay, \ 56 .delay = _delay, \
57 } 57 }
58 58
59#define DEFINE_PXA3_CK(_name, _cken, _ops) \
60struct clk clk_##_name = { \
61 .ops = _ops, \
62 .cken = CKEN_##_cken, \
63 }
64
65extern const struct clkops clk_pxa3xx_cken_ops; 59extern const struct clkops clk_pxa3xx_cken_ops;
66extern void clk_pxa3xx_cken_enable(struct clk *); 60extern void clk_pxa3xx_cken_enable(struct clk *);
67extern void clk_pxa3xx_cken_disable(struct clk *); 61extern void clk_pxa3xx_cken_disable(struct clk *);