intel: don't set the mode on the framebuffer if isn't set to scanout our framebuffer
parent
ec774e4d72
commit
00bb548c61
|
@ -218,7 +218,6 @@ static int intelfb_set_par(struct fb_info *info)
|
|||
|
||||
DRM_DEBUG("%d %d\n", var->xres, var->pixclock);
|
||||
|
||||
|
||||
if (var->pixclock != -1) {
|
||||
|
||||
DRM_ERROR("PIXEL CLCOK SET\n");
|
||||
|
@ -332,10 +331,12 @@ static int intelfb_set_par(struct fb_info *info)
|
|||
if (i == par->crtc_count)
|
||||
continue;
|
||||
|
||||
if (crtc->fb == intel_crtc->mode_set.fb) {
|
||||
ret = crtc->funcs->set_config(&intel_crtc->mode_set);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -984,8 +985,6 @@ int intelfb_probe(struct drm_device *dev)
|
|||
ret = intelfb_single_fb_probe(dev);
|
||||
}
|
||||
|
||||
fail:
|
||||
/* TODO */
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(intelfb_probe);
|
||||
|
|
Loading…
Reference in New Issue