Browse Source

udlfb: Improve debugging printouts with refresh rate

It is not very helpful to print a list of the same resolutions
without the refresh rate.

Signed-off-by: Bernie Thompson <bernie@plugable.com>
Martin Decky 13 years ago
parent
commit
9daee73c81
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/video/udlfb.c

+ 2 - 1
drivers/video/udlfb.c

@@ -1012,7 +1012,8 @@ static int dlfb_is_valid_mode(struct fb_videomode *mode,
 		return 0;
 	}
 
-	pr_info("%dx%d valid mode\n", mode->xres, mode->yres);
+	pr_info("%dx%d @ %d Hz valid mode\n", mode->xres, mode->yres,
+		mode->refresh);
 
 	return 1;
 }