Advertisement
Guest User

Untitled

a guest
Mar 7th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. if (clk_core_is_prepared(core)) {
  2. trace_clk_unprepare(core);
  3. if (core->ops->unprepare_unused)
  4. core->ops->unprepare_unused(core->hw);
  5. else if (core->ops->unprepare)
  6. core->ops->unprepare(core->hw);
  7. trace_clk_unprepare_complete(core);
  8. printk("Ignoring %s\n", core->name);
  9. if (true)
  10. goto unlock_out;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement