From: Michal Januszewski If the nocrtc flag is set, make sure the timings in fb_var are set to 60Hz and thus reflect the default BIOS refresh rate that is being used. Signed-off-by: Michal Januszewski Cc: "Antonino A. Daplas" Signed-off-by: Andrew Morton --- drivers/video/uvesafb.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/uvesafb.c~uvesafb-the-driver-core-uvesafb-set-the-refresh-rate-to-60hz-if-nocrtc-is-used drivers/video/uvesafb.c --- a/drivers/video/uvesafb.c~uvesafb-the-driver-core-uvesafb-set-the-refresh-rate-to-60hz-if-nocrtc-is-used +++ a/drivers/video/uvesafb.c @@ -903,7 +903,7 @@ gotmode: * If we are not VBE3.0+ compliant, we're done -- the BIOS will * ignore our timings anyway. */ - if (par->vbe_ib.vbe_version < 0x0300) + if (par->vbe_ib.vbe_version < 0x0300 || par->nocrtc) fb_get_mode(FB_VSYNCTIMINGS | FB_IGNOREMON, 60, &info->var, info); _