aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/streamzap.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-28 14:34:02 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-29 14:22:47 -0400
commit834b4d5136a8171066537b3c73c79863a50155cb (patch)
tree3e8cd03c6c2e400dbf064dc87b3c18c84bd48b59 /drivers/media/rc/streamzap.c
parent3228bf81e08f2794d9448e391a0ab6ce2c5b2380 (diff)
USB: media: streamzap: remove CONFIG_USB_DEBUG
It wasn't even being used for anything, so remove the test for the config option (as the config option isn't present anymore), and remove the unused module parameter "debug" so as to not confuse anyone. Cc: Mauro Carvalho Chehab <m.chehab@samsung.com> Cc: James Hogan <james.hogan@imgtec.com> Cc: "Antti Seppälä" <a.seppala@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/media/rc/streamzap.c')
-rw-r--r--drivers/media/rc/streamzap.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/media/rc/streamzap.c b/drivers/media/rc/streamzap.c
index f4e0bc3d382c..bd5e4ff9e0ba 100644
--- a/drivers/media/rc/streamzap.c
+++ b/drivers/media/rc/streamzap.c
@@ -42,12 +42,6 @@
42#define DRIVER_NAME "streamzap" 42#define DRIVER_NAME "streamzap"
43#define DRIVER_DESC "Streamzap Remote Control driver" 43#define DRIVER_DESC "Streamzap Remote Control driver"
44 44
45#ifdef CONFIG_USB_DEBUG
46static bool debug = 1;
47#else
48static bool debug;
49#endif
50
51#define USB_STREAMZAP_VENDOR_ID 0x0e9c 45#define USB_STREAMZAP_VENDOR_ID 0x0e9c
52#define USB_STREAMZAP_PRODUCT_ID 0x0000 46#define USB_STREAMZAP_PRODUCT_ID 0x0000
53 47
@@ -528,6 +522,3 @@ module_usb_driver(streamzap_driver);
528MODULE_AUTHOR("Jarod Wilson <jarod@wilsonet.com>"); 522MODULE_AUTHOR("Jarod Wilson <jarod@wilsonet.com>");
529MODULE_DESCRIPTION(DRIVER_DESC); 523MODULE_DESCRIPTION(DRIVER_DESC);
530MODULE_LICENSE("GPL"); 524MODULE_LICENSE("GPL");
531
532module_param(debug, bool, S_IRUGO | S_IWUSR);
533MODULE_PARM_DESC(debug, "Enable debugging messages");