提交 0138bd84 编写于 作者: G Geert Uytterhoeven 提交者: Linus Torvalds

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: NGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 535da7ff
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册