Commit 277aa972 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

USB: whci: declare functions as static

qset_print() was not declared static although it is not used
outside of debug.c
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a78f4f1a
...@@ -30,7 +30,7 @@ struct whc_dbg { ...@@ -30,7 +30,7 @@ struct whc_dbg {
struct dentry *pzl_f; struct dentry *pzl_f;
}; };
void qset_print(struct seq_file *s, struct whc_qset *qset) static void qset_print(struct seq_file *s, struct whc_qset *qset)
{ {
static const char *qh_type[] = { static const char *qh_type[] = {
"ctrl", "isoc", "bulk", "intr", "rsvd", "rsvd", "rsvd", "lpintr", }; "ctrl", "isoc", "bulk", "intr", "rsvd", "rsvd", "rsvd", "lpintr", };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment