]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: sm750fb: hw_sm750_setBLANK: reduce printk verbosity
authorMike Rapoport <mike.rapoport@gmail.com>
Wed, 10 Feb 2016 16:34:07 +0000 (18:34 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:52:37 +0000 (19:52 -0800)
pr_debug would be enough

Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/sm750_hw.c

index c0c2f1c4de82190cf3630c6b943da42a4bff60a1..52fd250d7afeb3c5581aeca24b16d25c2edcc044 100644 (file)
@@ -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;