staging/gma500: fixup staging code to build following core changes.
This just fixes up the staging code to keep building. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
01f2c7730e
commit
9e38a66171
|
@ -253,7 +253,7 @@ static void psbfb_copyarea_accel(struct fb_info *info,
|
|||
return;
|
||||
|
||||
offset = psbfb->gtt->offset;
|
||||
stride = fb->pitch;
|
||||
stride = fb->pitches[0];
|
||||
|
||||
switch (fb->depth) {
|
||||
case 8:
|
||||
|
|
|
@ -507,9 +507,9 @@ int cdv_intel_pipe_set_base(struct drm_crtc *crtc,
|
|||
if (ret < 0)
|
||||
goto psb_intel_pipe_set_base_exit;
|
||||
start = psbfb->gtt->offset;
|
||||
offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
|
||||
offset = y * crtc->fb->pitches[0] + x * (crtc->fb->bits_per_pixel / 8);
|
||||
|
||||
REG_WRITE(dspstride, crtc->fb->pitch);
|
||||
REG_WRITE(dspstride, crtc->fb->pitches[0]);
|
||||
|
||||
dspcntr = REG_READ(dspcntr_reg);
|
||||
dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
|
||||
|
|
|
@ -511,7 +511,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);
|
||||
|
||||
|
|
|
@ -390,9 +390,9 @@ int mdfld__intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, struct drm_f
|
|||
goto psb_intel_pipe_set_base_exit;
|
||||
|
||||
start = psbfb->gtt->offset;
|
||||
offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
|
||||
offset = y * crtc->fb->pitches[0] + x * (crtc->fb->bits_per_pixel / 8);
|
||||
|
||||
REG_WRITE(dspstride, crtc->fb->pitch);
|
||||
REG_WRITE(dspstride, crtc->fb->pitches[0]);
|
||||
dspcntr = REG_READ(dspcntr_reg);
|
||||
dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
|
||||
|
||||
|
|
|
@ -543,9 +543,9 @@ int mrst_pipe_set_base(struct drm_crtc *crtc,
|
|||
return 0;
|
||||
|
||||
start = psbfb->gtt->offset;
|
||||
offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
|
||||
offset = y * crtc->fb->pitches[0] + x * (crtc->fb->bits_per_pixel / 8);
|
||||
|
||||
REG_WRITE(dspstride, crtc->fb->pitch);
|
||||
REG_WRITE(dspstride, crtc->fb->pitches[0]);
|
||||
|
||||
dspcntr = REG_READ(dspcntr_reg);
|
||||
dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
|
||||
|
|
|
@ -266,7 +266,7 @@ bool gma_power_begin(struct drm_device *dev, bool force_on)
|
|||
ret = gma_resume_pci(dev->pdev);
|
||||
if (ret == 0) {
|
||||
/* FIXME: we want to defer this for Medfield/Oaktrail */
|
||||
gma_resume_display(dev);
|
||||
gma_resume_display(dev->pdev);
|
||||
psb_irq_preinstall(dev);
|
||||
psb_irq_postinstall(dev);
|
||||
pm_runtime_get(&dev->pdev->dev);
|
||||
|
|
|
@ -367,9 +367,9 @@ int psb_intel_pipe_set_base(struct drm_crtc *crtc,
|
|||
goto psb_intel_pipe_set_base_exit;
|
||||
start = psbfb->gtt->offset;
|
||||
|
||||
offset = y * crtc->fb->pitch + x * (crtc->fb->bits_per_pixel / 8);
|
||||
offset = y * crtc->fb->pitches[0] + x * (crtc->fb->bits_per_pixel / 8);
|
||||
|
||||
REG_WRITE(dspstride, crtc->fb->pitch);
|
||||
REG_WRITE(dspstride, crtc->fb->pitches[0]);
|
||||
|
||||
dspcntr = REG_READ(dspcntr_reg);
|
||||
dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
|
||||
|
|
Loading…
Reference in New Issue