diff options
author | Martin Decky <martin@desky.cz> | 2012-03-01 19:31:11 -0500 |
---|---|---|
committer | Bernie Thompson <bernie@plugable.com> | 2012-03-01 20:45:56 -0500 |
commit | 9daee73c81d21f9f07f236f106da5d93c40f7a92 (patch) | |
tree | eed1c725116888d7bbaa1f13d0e37facf6b17b39 /drivers/video/udlfb.c | |
parent | 702686ad72b8c215ec197bdbbae3141a96f0dd01 (diff) |
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>
Diffstat (limited to 'drivers/video/udlfb.c')
-rw-r--r-- | drivers/video/udlfb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/udlfb.c b/drivers/video/udlfb.c index a40c05ebbdc2..04aea205f021 100644 --- a/drivers/video/udlfb.c +++ b/drivers/video/udlfb.c | |||
@@ -1012,7 +1012,8 @@ static int dlfb_is_valid_mode(struct fb_videomode *mode, | |||
1012 | return 0; | 1012 | return 0; |
1013 | } | 1013 | } |
1014 | 1014 | ||
1015 | pr_info("%dx%d valid mode\n", mode->xres, mode->yres); | 1015 | pr_info("%dx%d @ %d Hz valid mode\n", mode->xres, mode->yres, |
1016 | mode->refresh); | ||
1016 | 1017 | ||
1017 | return 1; | 1018 | return 1; |
1018 | } | 1019 | } |