summaryrefslogtreecommitdiffstats
path: root/drivers/staging/usbip
diff options
context:
space:
mode:
authorW. Trevor King2012-08-17 04:22:36 +0200
committerGreg Kroah-Hartman2012-08-17 18:44:04 +0200
commit93efc55b42536273d8ca5cccb5261cfe5e1471bb (patch)
treea9455c806f897adf57439463ef14c169a23c96a7 /drivers/staging/usbip
parentstaging: comedi: ke_counter: use attach_pci callback (diff)
downloadkernel-qcow2-linux-93efc55b42536273d8ca5cccb5261cfe5e1471bb.tar.gz
kernel-qcow2-linux-93efc55b42536273d8ca5cccb5261cfe5e1471bb.tar.xz
kernel-qcow2-linux-93efc55b42536273d8ca5cccb5261cfe5e1471bb.zip
staging: usbip: export usbip_debug_flag as a usbip-core module parameter.
Now usbip_common.c's pr_fmt is the only thing setup by CONFIG_USBIP_DEBUG that you can't subsequently alter using this parameter. Signed-off-by: W. Trevor King <wking@tremily.us> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/usbip')
-rw-r--r--drivers/staging/usbip/usbip_common.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c
index 70f230269329..891984238cdc 100644
--- a/drivers/staging/usbip/usbip_common.c
+++ b/drivers/staging/usbip/usbip_common.c
@@ -22,7 +22,9 @@
#include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/slab.h>
+#include <linux/stat.h>
#include <linux/module.h>
+#include <linux/moduleparam.h>
#include <net/sock.h>
#include "usbip_common.h"
@@ -36,6 +38,8 @@ unsigned long usbip_debug_flag = 0xffffffff;
unsigned long usbip_debug_flag;
#endif
EXPORT_SYMBOL_GPL(usbip_debug_flag);
+module_param(usbip_debug_flag, ulong, S_IRUGO|S_IWUSR);
+MODULE_PARM_DESC(usbip_debug_flag, "debug flags (defined in usbip_common.h)");
/* FIXME */
struct device_attribute dev_attr_usbip_debug;