mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 01:59:54 -04:00
staging: sm750fb: hw_sm750_setBLANK: reduce printk verbosity
pr_debug would be enough Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b117b637da
commit
5b621779c2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user