From: Geert Uytterhoeven Date: Tue, 16 Oct 2007 08:29:46 +0000 (-0700) Subject: ps3fb: do not print warnings on invalid frame numbers X-Git-Tag: v2.6.24-rc1~858 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=0138bd841ea2d713cf883c67684c40ce26ba319a;p=linux-2.6-omap-h63xx.git ps3fb: do not print warnings on invalid frame numbers Do not print warnings on invalid frame numbers, as this can be triggered from user space. Signed-off-by: Geert Uytterhoeven Cc: "Antonino A. Daplas" Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c index eb8afc7ace0..49069dba1b5 100644 --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c @@ -389,8 +389,8 @@ static int ps3fb_sync(struct fb_info *info, u32 frame) yres = ps3fb_res[i].yres; if (frame > ps3fb.num_frames - 1) { - dev_warn(info->device, "%s: invalid frame number (%u)\n", - __func__, frame); + dev_dbg(info->device, "%s: invalid frame number (%u)\n", + __func__, frame); return -EINVAL; } offset = xres * yres * BPP * frame;