Skip to content

Commit

Permalink
udlfb: Improve debugging printouts with refresh rate
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Martin Decky authored and Bernie Thompson committed Mar 2, 2012
1 parent 702686a commit 9daee73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/video/udlfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9daee73

Please sign in to comment.