drm/vc4: hdmi: Drop devm interrupt handler for CEC interrupts
authorMaxime Ripard <maxime@cerno.tech>
Mon, 5 Jul 2021 13:47:43 +0000 (15:47 +0200)
committerPhil Elwell <8911409+pelwell@users.noreply.github.com>
Tue, 6 Jul 2021 10:56:31 +0000 (11:56 +0100)
commite6fa19ad1503290bbebe821e4c18c9b0e5666f0b
tree867e899d8401e9f6066efecc63e014757113bfe9
parent94f7ac6ed41d6fa91ad823c262a9da760cbf3de8
drm/vc4: hdmi: Drop devm interrupt handler for CEC interrupts

The CEC interrupt handlers are registered through the
devm_request_threaded_irq function. However, while free_irq is indeed
called properly when the device is unbound or bind fails, it's called
after unbind or bind is done.

In our particular case, it means that on failure it creates a window
where our interrupt handler can be called, but we're freeing every
resource (CEC adapter, DRM objects, etc.) it might need.

In order to address this, let's switch to the non-devm variant to
control better when the handler will be unregistered and allow us to
make it safe.

Fixes: 15b4511a4af6 ("drm/vc4: add HDMI CEC support")
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
drivers/gpu/drm/vc4/vc4_hdmi.c