aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-davinci/clock.h')
-rw-r--r--arch/arm/mach-davinci/clock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-davinci/clock.h b/arch/arm/mach-davinci/clock.h
index a75d3f70b351..d45dc6960a94 100644
--- a/arch/arm/mach-davinci/clock.h
+++ b/arch/arm/mach-davinci/clock.h
@@ -69,9 +69,9 @@ struct clk {
69 const char *name; 69 const char *name;
70 unsigned long rate; 70 unsigned long rate;
71 u8 usecount; 71 u8 usecount;
72 u8 flags;
73 u8 lpsc; 72 u8 lpsc;
74 u8 psc_ctlr; 73 u8 psc_ctlr;
74 u32 flags;
75 struct clk *parent; 75 struct clk *parent;
76 struct list_head children; /* list of children */ 76 struct list_head children; /* list of children */
77 struct list_head childnode; /* parent's child list node */ 77 struct list_head childnode; /* parent's child list node */
@@ -82,7 +82,7 @@ struct clk {
82 int (*round_rate) (struct clk *clk, unsigned long rate); 82 int (*round_rate) (struct clk *clk, unsigned long rate);
83}; 83};
84 84
85/* Clock flags */ 85/* Clock flags: SoC-specific flags start at BIT(16) */
86#define ALWAYS_ENABLED BIT(1) 86#define ALWAYS_ENABLED BIT(1)
87#define CLK_PSC BIT(2) 87#define CLK_PSC BIT(2)
88#define PSC_DSP BIT(3) /* PSC uses DSP domain, not ARM */ 88#define PSC_DSP BIT(3) /* PSC uses DSP domain, not ARM */