summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandor Yu <R01008@freescale.com>2013-11-21 16:00:12 +0800
committerSandor Yu <R01008@freescale.com>2013-11-22 16:28:41 +0800
commit8566c7359778325e0f5e4b390a869db81c0e986b (patch)
treee7c35d12ff41ad0aca6bdb92d17b4956f3826e73
parent0c44b8521e121254167c545ba0da4000e9bc13e2 (diff)
ENGR00289050 mxsfb: remove dev_err in pan_dispaly function
Xserver will call pan display after fb blanked when device bootup. mxsfb have prevent such operate. Replace dev_err with dev_dbg to avoid message print. Signed-off-by: Sandor Yu <R01008@freescale.com>
-rw-r--r--drivers/video/mxsfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c
index 434c0ed201ee..6e683fd92ff7 100644
--- a/drivers/video/mxsfb.c
+++ b/drivers/video/mxsfb.c
@@ -739,7 +739,7 @@ static int mxsfb_pan_display(struct fb_var_screeninfo *var,
unsigned offset;
if (host->cur_blank != FB_BLANK_UNBLANK) {
- dev_err(fb_info->device, "can't do pan display when fb "
+ dev_dbg(fb_info->device, "can't do pan display when fb "
"is blank\n");
return -EINVAL;
}