Commit 0411d0c5 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP: Skip reset check for DSP domain clocks as they need api_ck

Skip reset check for DSP domain clocks as they need api_ck
parent b54b8db1
......@@ -605,6 +605,14 @@ static int __init omap1_late_clk_reset(void)
p->enable_reg == 0)
continue;
/* Clocks in the DSP domain need api_ck. Just assume bootloader
* has not enabled any DSP clocks */
if (p->enable_reg == DSP_IDLECT2) {
printk(KERN_INFO "Skipping reset check for DSP domain clock \"%s\"\n",
p->name);
continue;
}
/* Is the clock already disabled? */
if (p->flags & ENABLE_REG_32BIT) {
if (p->flags & VIRTUAL_IO_ADDRESS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment