aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2010-04-28 16:59:33 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-20 16:21:41 -0400
commit277aa97254533c7e49a04244dfbdccbae70a7f0e (patch)
tree49d331dec89fe0654f87ee9d8808e9c8800c0b1d /drivers
parenta78f4f1a16d87f3d33158d036af94e48e32f8aad (diff)
USB: whci: declare functions as static
qset_print() was not declared static although it is not used outside of debug.c Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/host/whci/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/whci/debug.c b/drivers/usb/host/whci/debug.c
index c5305b599ca0..767af265e002 100644
--- a/drivers/usb/host/whci/debug.c
+++ b/drivers/usb/host/whci/debug.c
@@ -30,7 +30,7 @@ struct whc_dbg {
30 struct dentry *pzl_f; 30 struct dentry *pzl_f;
31}; 31};
32 32
33void qset_print(struct seq_file *s, struct whc_qset *qset) 33static void qset_print(struct seq_file *s, struct whc_qset *qset)
34{ 34{
35 static const char *qh_type[] = { 35 static const char *qh_type[] = {
36 "ctrl", "isoc", "bulk", "intr", "rsvd", "rsvd", "rsvd", "lpintr", }; 36 "ctrl", "isoc", "bulk", "intr", "rsvd", "rsvd", "rsvd", "lpintr", };