staging: drm/omap: crtc/encoder/fb destroy cleanups
Signed-off-by: Rob Clark <rob@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Родитель
b369839b88
Коммит
65b0bd067d
|
@ -320,8 +320,7 @@ struct drm_crtc *omap_crtc_init(struct drm_device *dev,
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
if (crtc) {
|
if (crtc) {
|
||||||
drm_crtc_cleanup(crtc);
|
omap_crtc_destroy(crtc);
|
||||||
kfree(omap_crtc);
|
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -164,8 +164,7 @@ struct drm_encoder *omap_encoder_init(struct drm_device *dev,
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
if (encoder) {
|
if (encoder) {
|
||||||
drm_encoder_cleanup(encoder);
|
omap_encoder_destroy(encoder);
|
||||||
kfree(omap_encoder);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
@ -53,11 +53,9 @@ static void omap_framebuffer_destroy(struct drm_framebuffer *fb)
|
||||||
|
|
||||||
drm_framebuffer_cleanup(fb);
|
drm_framebuffer_cleanup(fb);
|
||||||
|
|
||||||
if (omap_gem_put_paddr(omap_fb->bo)) {
|
|
||||||
dev_err(dev->dev, "could not unmap!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (omap_fb->bo) {
|
if (omap_fb->bo) {
|
||||||
|
if (omap_fb->paddr && omap_gem_put_paddr(omap_fb->bo))
|
||||||
|
dev_err(dev->dev, "could not unmap!\n");
|
||||||
drm_gem_object_unreference_unlocked(omap_fb->bo);
|
drm_gem_object_unreference_unlocked(omap_fb->bo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче