The patch titled
     ps3fb: do not print warnings on invalid frame numbers
has been removed from the -mm tree.  Its filename was
     ps3fb-do-not-print-warnings-on-invalid-frame-numbers.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: ps3fb: do not print warnings on invalid frame numbers
From: Geert Uytterhoeven <[EMAIL PROTECTED]>

Do not print warnings on invalid frame numbers, as this can be triggered from
user space.

Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]>
Cc: "Antonino A. Daplas" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/video/ps3fb.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN 
drivers/video/ps3fb.c~ps3fb-do-not-print-warnings-on-invalid-frame-numbers 
drivers/video/ps3fb.c
--- a/drivers/video/ps3fb.c~ps3fb-do-not-print-warnings-on-invalid-frame-numbers
+++ a/drivers/video/ps3fb.c
@@ -389,8 +389,8 @@ static int ps3fb_sync(struct fb_info *in
        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;
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to