diff options
author | Felipe Balbi <balbi@ti.com> | 2012-01-24 10:18:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2012-01-24 12:23:18 -0800 |
commit | 3297f86a3d4158e052538c7b9a3dea9c855a1b42 (patch) | |
tree | 25eb96cb96c98ffdf21ffcfe25c2e4f387877cd6 | |
parent | drivers/usb/host/ehci-fsl.c: add missing iounmap (diff) | |
download | linux-dev-3297f86a3d4158e052538c7b9a3dea9c855a1b42.tar.xz linux-dev-3297f86a3d4158e052538c7b9a3dea9c855a1b42.zip |
usb: serial: kobil_sct: fix compile warning:
Fix the following compile warning:
drivers/usb/serial/kobil_sct.c: In function ‘__check_debug’:
drivers/usb/serial/kobil_sct.c:719:1: warning: return from incompatible
pointer type [enabled by default]
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/serial/kobil_sct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index 5d3beeeb5fd9..a92a3efb507b 100644 --- a/drivers/usb/serial/kobil_sct.c +++ b/drivers/usb/serial/kobil_sct.c @@ -38,7 +38,7 @@ #include <linux/ioctl.h> #include "kobil_sct.h" -static int debug; +static bool debug; /* Version Information */ #define DRIVER_VERSION "21/05/2004" |