Skip to content

Commit

Permalink
USB: storage/onetouch.c: make a function static
Browse files Browse the repository at this point in the history
This patch makes the needlessly global onetouch_release_input() static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Adrian Bunk authored and Greg Kroah-Hartman committed May 2, 2008
1 parent e42dc36 commit 43c1e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/usb/storage/onetouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include "onetouch.h"
#include "debug.h"

void onetouch_release_input(void *onetouch_);
static void onetouch_release_input(void *onetouch_);

struct usb_onetouch {
char name[128];
Expand Down Expand Up @@ -223,7 +223,7 @@ int onetouch_connect_input(struct us_data *ss)
return error;
}

void onetouch_release_input(void *onetouch_)
static void onetouch_release_input(void *onetouch_)
{
struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_;

Expand Down

0 comments on commit 43c1e98

Please sign in to comment.