diff options
author | James Simmons <jsimmons@infradead.org> | 2010-12-23 11:40:37 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-01-06 22:44:40 -0500 |
commit | dfe63bb0ad9810db13aab0058caba97866e0a681 (patch) | |
tree | ffc5e9335283001c072aa0377ba9fd92ac3b1919 /drivers/gpu/drm/i915 | |
parent | f598aa7593427ffe3a61e7767c34bd695a5e7ed0 (diff) |
drm: Update fbdev fb_fix_screeninfo
If you change the color depth via fbset or some other framebuffer aware
userland application struct fb_fix_screeninfo is not updated to this new
information. This patch fixes this issue. Also the function is changed to
just pass in struct drm_framebuffer so in the future we could use more
fields. I'm hoping some day fix->smem* could be set here :-)
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/i915')
-rw-r--r-- | drivers/gpu/drm/i915/intel_fb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_fb.c b/drivers/gpu/drm/i915/intel_fb.c index 67738f32dfd4..701e830d0012 100644 --- a/drivers/gpu/drm/i915/intel_fb.c +++ b/drivers/gpu/drm/i915/intel_fb.c | |||
@@ -150,7 +150,6 @@ static int intelfb_create(struct intel_fbdev *ifbdev, | |||
150 | 150 | ||
151 | // memset(info->screen_base, 0, size); | 151 | // memset(info->screen_base, 0, size); |
152 | 152 | ||
153 | drm_fb_helper_fill_fix(info, fb->pitch, fb->depth); | ||
154 | drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height); | 153 | drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height); |
155 | 154 | ||
156 | info->pixmap.size = 64*1024; | 155 | info->pixmap.size = 64*1024; |