[PATCH] drm/omap: fix (un)registering irqs inside an irq handler

2013-10-24 Thread Tomi Valkeinen
omapdrm (un)registers irqs inside an irq handler. The problem is that the (un)register function uses dispc_runtime_get/put() to enable the clocks, and those functions are not irq safe by default. This was kind of fixed in 48664b21aeeffb40c5fa06843f18052e2c4ec9ef (OMAPDSS: DISPC: set irq_safe for r

[PATCH] drm/omap: fix (un)registering irqs inside an irq handler

2013-10-24 Thread Rob Clark
On Thu, Oct 24, 2013 at 2:50 AM, Tomi Valkeinen wrote: > omapdrm (un)registers irqs inside an irq handler. The problem is that > the (un)register function uses dispc_runtime_get/put() to enable the > clocks, and those functions are not irq safe by default. > > This was kind of fixed in 48664b21ae