Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9daee73c authored by Martin Decky's avatar Martin Decky Committed by Bernie Thompson
Browse files

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: default avatarBernie Thompson <bernie@plugable.com>
parent 702686ad
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -1012,7 +1012,8 @@ static int dlfb_is_valid_mode(struct fb_videomode *mode,
		return 0;
		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;
	return 1;
}
}