Skip to content

Commit

Permalink
USB: whci: declare functions as static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed May 20, 2010
1 parent a78f4f1 commit 277aa97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/host/whci/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct whc_dbg {
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[] = {
"ctrl", "isoc", "bulk", "intr", "rsvd", "rsvd", "rsvd", "lpintr", };
Expand Down

0 comments on commit 277aa97

Please sign in to comment.