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

Commit 5b621779 authored by Mike Rapoport's avatar Mike Rapoport Committed by Greg Kroah-Hartman
Browse files

staging: sm750fb: hw_sm750_setBLANK: reduce printk verbosity



pr_debug would be enough

Signed-off-by: default avatarMike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b117b637
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -414,13 +414,13 @@ int hw_sm750_setBLANK(struct lynxfb_output *output, int blank)

	switch (blank) {
	case FB_BLANK_UNBLANK:
		pr_info("flag = FB_BLANK_UNBLANK\n");
		pr_debug("flag = FB_BLANK_UNBLANK\n");
		dpms = SYSTEM_CTRL_DPMS_VPHP;
		pps = PANEL_DISPLAY_CTRL_DATA_ENABLE;
		crtdb = CRT_DISPLAY_CTRL_BLANK_OFF;
		break;
	case FB_BLANK_NORMAL:
		pr_info("flag = FB_BLANK_NORMAL\n");
		pr_debug("flag = FB_BLANK_NORMAL\n");
		dpms = SYSTEM_CTRL_DPMS_VPHP;
		pps = PANEL_DISPLAY_CTRL_DATA_DISABLE;
		crtdb = CRT_DISPLAY_CTRL_BLANK_ON;