drm/vkms: add missing platform_device_unregister() in vkms_init()
authorQinglang Miao <miaoqinglang@huawei.com>
Mon, 10 Aug 2020 13:00:11 +0000 (21:00 +0800)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 10 Aug 2020 13:31:19 +0000 (15:31 +0200)
When vkms_init() get into out_put, the unregister call of
vkms_device->platform is missing. So add it before return.

Fixes: ac19f140bc27 ("drm/vkms: Use drmm_add_final_kfree")
Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20200810130011.187691-1-miaoqinglang@huawei.com
drivers/gpu/drm/vkms/vkms_drv.c

index 57a8a39..83dd556 100644 (file)
@@ -190,8 +190,8 @@ static int __init vkms_init(void)
 
 out_put:
        drm_dev_put(&vkms_device->drm);
+       platform_device_unregister(vkms_device->platform);
        return ret;
-
 out_unregister:
        platform_device_unregister(vkms_device->platform);
 out_free: