Commit 37214ca0 authored by Kirill A. Shutemov's avatar Kirill A. Shutemov Committed by Dave Airlie

gma500: vram_addr should be __iomem

Signed-off-by: default avatarKirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 846a6038
...@@ -455,8 +455,7 @@ static int psbfb_create(struct psb_fbdev *fbdev, ...@@ -455,8 +455,7 @@ static int psbfb_create(struct psb_fbdev *fbdev,
info->fix.ypanstep = 0; info->fix.ypanstep = 0;
/* Accessed stolen memory directly */ /* Accessed stolen memory directly */
info->screen_base = (char *)dev_priv->vram_addr + info->screen_base = dev_priv->vram_addr + backing->offset;
backing->offset;
info->screen_size = size; info->screen_size = size;
if (dev_priv->gtt.stolen_size) { if (dev_priv->gtt.stolen_size) {
......
...@@ -509,7 +509,7 @@ struct drm_psb_private { ...@@ -509,7 +509,7 @@ struct drm_psb_private {
struct page *scratch_page; struct page *scratch_page;
u32 __iomem *gtt_map; u32 __iomem *gtt_map;
uint32_t stolen_base; uint32_t stolen_base;
void *vram_addr; u8 __iomem *vram_addr;
unsigned long vram_stolen_size; unsigned long vram_stolen_size;
int gtt_initialized; int gtt_initialized;
u16 gmch_ctrl; /* Saved GTT setup */ u16 gmch_ctrl; /* Saved GTT setup */
......
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