Re: [PATCH v6 4/8] drm: zynqmp_dp: Convert to a hard IRQ

2024-10-02 Thread Tomi Valkeinen
Hi, On 09/08/2024 22:35, Sean Anderson wrote: Now that all of the sleeping work is done outside of the IRQ, we can convert it to a hard IRQ. Shared IRQs may be triggered even after calling disable_irq, so use free_irq instead which removes our callback altogether. Signed-off-by: Sean Anderson

[PATCH v6 4/8] drm: zynqmp_dp: Convert to a hard IRQ

2024-08-09 Thread Sean Anderson
Now that all of the sleeping work is done outside of the IRQ, we can convert it to a hard IRQ. Shared IRQs may be triggered even after calling disable_irq, so use free_irq instead which removes our callback altogether. Signed-off-by: Sean Anderson --- Changes in v6: - Fix hang upon driver remova