diff options
Diffstat (limited to 'arch/arm/mach-omap2/clockdomain.c')
-rw-r--r-- | arch/arm/mach-omap2/clockdomain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/clockdomain.c b/arch/arm/mach-omap2/clockdomain.c index 58e42f76603f..2b4ab0beff48 100644 --- a/arch/arm/mach-omap2/clockdomain.c +++ b/arch/arm/mach-omap2/clockdomain.c | |||
@@ -181,7 +181,7 @@ static void _clkdm_add_autodeps(struct clockdomain *clkdm) | |||
181 | { | 181 | { |
182 | struct clkdm_autodep *autodep; | 182 | struct clkdm_autodep *autodep; |
183 | 183 | ||
184 | if (!autodeps) | 184 | if (!autodeps || clkdm->flags & CLKDM_NO_AUTODEPS) |
185 | return; | 185 | return; |
186 | 186 | ||
187 | for (autodep = autodeps; autodep->clkdm.ptr; autodep++) { | 187 | for (autodep = autodeps; autodep->clkdm.ptr; autodep++) { |
@@ -215,7 +215,7 @@ static void _clkdm_del_autodeps(struct clockdomain *clkdm) | |||
215 | { | 215 | { |
216 | struct clkdm_autodep *autodep; | 216 | struct clkdm_autodep *autodep; |
217 | 217 | ||
218 | if (!autodeps) | 218 | if (!autodeps || clkdm->flags & CLKDM_NO_AUTODEPS) |
219 | return; | 219 | return; |
220 | 220 | ||
221 | for (autodep = autodeps; autodep->clkdm.ptr; autodep++) { | 221 | for (autodep = autodeps; autodep->clkdm.ptr; autodep++) { |