]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: comedi: serial2002: remove pr_err() noise in serial2002_read()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 5 Apr 2013 23:12:52 +0000 (16:12 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Apr 2013 17:27:45 +0000 (10:27 -0700)
This pr_err() is just added noise, the user can't do anything about it.
Just remove it.

Since this is the only pr_level() message in the driver, also remove
the pr_fmt() macro.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/serial2002.c

index ec9ebd44fb6efe6525def168c7c1e0f22c4b0992..d6bd88833d37243c7bf516e6e6f66e826563ba18 100644 (file)
@@ -31,8 +31,6 @@ Status: in development
 
 */
 
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
 #include "../comedidev.h"
 
 #include <linux/delay.h>
@@ -299,7 +297,6 @@ static struct serial_data serial2002_read(struct file *f, int timeout)
 
                length++;
                if (data < 0) {
-                       pr_err("Failed to read serial.\n");
                        break;
                } else if (data & 0x80) {
                        result.value = (result.value << 7) | (data & 0x7f);