On Fri, Apr 15, 2016 at 10:17:36AM -0600, Sagar Dharia wrote:Good point, I will change the del_controller as well to enter clock-pause,
Please leave blank lines between paragraphs, it makes things much easier
to read than a wall of uninterrupted text.
No, that's not what I'm saying - I'm asking about the *disable* path onSince clock is not enabled before this step, we won't be getting any+ ret = devm_request_irq(&pdev->dev, dev->irq, msm_slim_interrupt,Are you sure this is safe and we don't deallocate things the interrupt
+ IRQF_TRIGGER_HIGH, "msm_slim_irq", dev);
+ if (ret) {
+ dev_err(&pdev->dev, "request IRQ failed\n");
+ goto err_request_irq_failed;
+ }
handler uses before we disable the interrupt?
interrupts from HW at this stage.
remove.