diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2022-06-01 16:38:18 -0700 |
---|---|---|
committer | Robert Foss <robert.foss@linaro.org> | 2022-06-07 14:57:47 +0200 |
commit | dfa687bffc8a4a21ed929c7dececf01b8f1f52ee (patch) | |
tree | 5756e9b5d791341da2fb4f8a31ec633a1305fb4b | |
parent | d82a5a4aae9d0203234737caed1bf470aa317568 (diff) |
drm/bridge: lt9611uxc: Cancel only driver's workdrm-misc-next-2022-06-08
During device remove care needs to be taken that no work is pending
before it removes the underlying DRM bridge etc, but this can be done on
the specific work rather than waiting for the flush of the system-wide
workqueue.
Fixes: bc6fa8676ebb ("drm/bridge/lontium-lt9611uxc: move HPD notification out of IRQ handler")
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20220601233818.1877963-1-bjorn.andersson@linaro.org
-rw-r--r-- | drivers/gpu/drm/bridge/lontium-lt9611uxc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/bridge/lontium-lt9611uxc.c b/drivers/gpu/drm/bridge/lontium-lt9611uxc.c index 3d62e6bf6892..310b3b194491 100644 --- a/drivers/gpu/drm/bridge/lontium-lt9611uxc.c +++ b/drivers/gpu/drm/bridge/lontium-lt9611uxc.c @@ -982,7 +982,7 @@ static int lt9611uxc_remove(struct i2c_client *client) struct lt9611uxc *lt9611uxc = i2c_get_clientdata(client); disable_irq(client->irq); - flush_scheduled_work(); + cancel_work_sync(<9611uxc->work); lt9611uxc_audio_exit(lt9611uxc); drm_bridge_remove(<9611uxc->bridge); |