Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/ast: Fix connector leak during driver unload

When unloading the ast driver, a warning message is printed by
drm_mode_config_cleanup() because a reference is still held to one of
the drm_connector structs.

Correct this by calling drm_crtc_force_disable_all() in
ast_fbdev_destroy().

Signed-off-by: Sam Bobroff <sbobroff@linux.ibm.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1e613f3c630c7bbc72e04a44b178259b9164d2f6.1543798395.git.sbobroff@linux.ibm.com

authored by

Sam Bobroff and committed by
Dave Airlie
e594a5e3 6ccd895e

+1
+1
drivers/gpu/drm/ast/ast_fb.c
··· 263 263 { 264 264 struct ast_framebuffer *afb = &afbdev->afb; 265 265 266 + drm_crtc_force_disable_all(dev); 266 267 drm_fb_helper_unregister_fbi(&afbdev->helper); 267 268 268 269 if (afb->obj) {