diff options
author | 2025-03-24 17:52:24 +1000 | |
---|---|---|
committer | 2025-03-24 17:52:28 +1000 | |
commit | 0f04462874e1228cf58e19a3d1710db9757dd695 (patch) | |
tree | de8d5b1c8a9bb838c9eb59a1d54e2e1baa044104 | |
parent | Merge tag 'drm-xe-next-fixes-2025-03-12' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-next (diff) | |
parent | drm/appletbdrm: Fix ref-counting on dmadev (diff) | |
download | wireguard-linux-0f04462874e1228cf58e19a3d1710db9757dd695.tar.xz wireguard-linux-0f04462874e1228cf58e19a3d1710db9757dd695.zip |
Merge tag 'drm-misc-next-fixes-2025-03-13' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-next
Short summary of fixes pull:
appletbdrm:
- Fix device refcount
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20250313180135.GA276891@linux.fritz.box
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/tiny/appletbdrm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tiny/appletbdrm.c b/drivers/gpu/drm/tiny/appletbdrm.c index 394c8f9bd41a..4370ba22dd88 100644 --- a/drivers/gpu/drm/tiny/appletbdrm.c +++ b/drivers/gpu/drm/tiny/appletbdrm.c @@ -805,7 +805,6 @@ static void appletbdrm_disconnect(struct usb_interface *intf) struct appletbdrm_device *adev = usb_get_intfdata(intf); struct drm_device *drm = &adev->drm; - put_device(adev->dmadev); drm_dev_unplug(drm); drm_atomic_helper_shutdown(drm); } |