diff options
author | Dave Airlie <airlied@redhat.com> | 2024-07-12 03:42:16 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2024-07-12 05:50:30 +0300 |
commit | 38e73004c2b537f79789347a8c381c8efc502480 (patch) | |
tree | d540fbf1bff021c6d8787234732ee0ebada41f0f /drivers/gpu/drm/panel | |
parent | 62a05f4ae9c1fb70bc75d494c9c1c373d2c2e374 (diff) | |
parent | c537fb4e3d36e7cd1a0837dd577cd30d3d64f1bc (diff) | |
download | linux-38e73004c2b537f79789347a8c381c8efc502480.tar.xz |
Merge tag 'drm-misc-next-fixes-2024-07-11' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-next
A fix for fbdev on big endian systems, a condition fix for a sharp panel
at removal, and a fix for qxl to prevent unpinned buffer access under
certain conditions.
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maxime Ripard <mripard@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240711-benign-rich-mouflon-2eeafe@houat
Diffstat (limited to 'drivers/gpu/drm/panel')
-rw-r--r-- | drivers/gpu/drm/panel/panel-sharp-lq101r1sx01.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/panel/panel-sharp-lq101r1sx01.c b/drivers/gpu/drm/panel/panel-sharp-lq101r1sx01.c index edc9425bb143..a0d76d588da1 100644 --- a/drivers/gpu/drm/panel/panel-sharp-lq101r1sx01.c +++ b/drivers/gpu/drm/panel/panel-sharp-lq101r1sx01.c @@ -362,7 +362,7 @@ static void sharp_panel_remove(struct mipi_dsi_device *dsi) dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err); /* only detach from host for the DSI-LINK2 interface */ - if (!sharp) + if (sharp) sharp_panel_del(sharp); } |