aboutsummaryrefslogtreecommitdiff
path: root/linux-core/drm_fb.c
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@fairlite.demon.co.uk>2007-05-18 14:16:10 +0100
committerAlan Hourihane <alanh@fairlite.demon.co.uk>2007-05-18 14:16:10 +0100
commit0c33a2cd2ec81478403d39b1b92aaa4431e7cf0a (patch)
treeb452501935a7e2247bfc01188edba04a4efa31f8 /linux-core/drm_fb.c
parent3851600b3450697e20286b1937f3e51397f1965a (diff)
Move fbo creation to the specified fb driver which gives
it a chance to allocate the memory from whichever buffer it wants to.
Diffstat (limited to 'linux-core/drm_fb.c')
-rw-r--r--linux-core/drm_fb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/linux-core/drm_fb.c b/linux-core/drm_fb.c
index 173864d0..1531e96c 100644
--- a/linux-core/drm_fb.c
+++ b/linux-core/drm_fb.c
@@ -418,9 +418,10 @@ int drmfb_probe(struct drm_device *dev, struct drm_crtc *crtc)
}
EXPORT_SYMBOL(drmfb_probe);
-int drmfb_remove(struct drm_device *dev, struct drm_framebuffer *fb)
+int drmfb_remove(struct drm_device *dev, struct drm_crtc *crtc)
{
struct fb_info *info = fb->fbdev;
+ struct drm_framebuffer *fb = crtc->fb;
if (info) {
drm_mem_reg_iounmap(dev, &fb->bo->mem, fb->virtual_base);