Commit a7e3fa76 authored by Michał Mirosław's avatar Michał Mirosław Committed by Daniel Vetter
parent ff07a585
...@@ -61,22 +61,6 @@ static struct drm_driver sun4i_drv_driver = { ...@@ -61,22 +61,6 @@ static struct drm_driver sun4i_drv_driver = {
/* Frame Buffer Operations */ /* Frame Buffer Operations */
}; };
static void sun4i_remove_framebuffers(void)
{
struct apertures_struct *ap;
ap = alloc_apertures(1);
if (!ap)
return;
/* The framebuffer can be located anywhere in RAM */
ap->ranges[0].base = 0;
ap->ranges[0].size = ~0;
drm_fb_helper_remove_conflicting_framebuffers(ap, "sun4i-drm-fb", false);
kfree(ap);
}
static int sun4i_drv_bind(struct device *dev) static int sun4i_drv_bind(struct device *dev)
{ {
struct drm_device *drm; struct drm_device *drm;
...@@ -119,7 +103,7 @@ static int sun4i_drv_bind(struct device *dev) ...@@ -119,7 +103,7 @@ static int sun4i_drv_bind(struct device *dev)
drm->irq_enabled = true; drm->irq_enabled = true;
/* Remove early framebuffers (ie. simplefb) */ /* Remove early framebuffers (ie. simplefb) */
sun4i_remove_framebuffers(); drm_fb_helper_remove_conflicting_framebuffers(NULL, "sun4i-drm-fb", false);
/* Create our framebuffer */ /* Create our framebuffer */
ret = sun4i_framebuffer_init(drm); ret = sun4i_framebuffer_init(drm);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment