diff options
| author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2011-12-20 00:06:49 +0200 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2011-12-20 10:06:27 +0000 | 
| commit | 01f2c7730e188077026c5f766f85f329c7000c54 (patch) | |
| tree | 1b7ad10bd70c25ccaefa2a03aeedaeb20ac2c336 /drivers/gpu/drm/gma500/framebuffer.c | |
| parent | 935b59774012d11e3012c909cdd0c3cba0adf219 (diff) | |
| download | olio-linux-3.10-01f2c7730e188077026c5f766f85f329c7000c54.tar.xz olio-linux-3.10-01f2c7730e188077026c5f766f85f329c7000c54.zip  | |
drm: Replace pitch with pitches[] in drm_framebuffer
Otherwise each driver would need to keep the information inside
their own framebuffer object structure. Also add offsets[]. BOs
on the other hand are driver specific, so those can be kept in
driver specific structures.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/gma500/framebuffer.c')
| -rw-r--r-- | drivers/gpu/drm/gma500/framebuffer.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/gma500/framebuffer.c b/drivers/gpu/drm/gma500/framebuffer.c index 9ec167600d0..75cfafe2ff8 100644 --- a/drivers/gpu/drm/gma500/framebuffer.c +++ b/drivers/gpu/drm/gma500/framebuffer.c @@ -500,7 +500,7 @@ static int psbfb_create(struct psb_fbdev *fbdev,  		info->apertures->ranges[0].size = dev_priv->gtt.stolen_size;  	} -	drm_fb_helper_fill_fix(info, fb->pitch, fb->depth); +	drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);  	drm_fb_helper_fill_var(info, &fbdev->psb_fb_helper,  				sizes->fb_width, sizes->fb_height);  |