Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Martin Decky and committed by
Bernie Thompson
9daee73c 702686ad

+2 -1
+2 -1
drivers/video/udlfb.c
··· 1012 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 1018 return 1; 1018 1019 }