aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/storage/onetouch.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-04-28 18:39:37 +0300
committerGreg Kroah-Hartman <gregkh@suse.de>2008-05-02 10:25:51 -0700
commit43c1e98c87013757ef02c50a6e43bafeb6871f68 (patch)
tree6941c52866c1987125f0e7fca5b22240f3bd587c /drivers/usb/storage/onetouch.c
parente42dc36b2cf9849362967ea836196c8ef6079ec7 (diff)
downloadlinux-43c1e98c87013757ef02c50a6e43bafeb6871f68.tar.gz
USB: storage/onetouch.c: make a function static
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>
Diffstat (limited to 'drivers/usb/storage/onetouch.c')
-rw-r--r--drivers/usb/storage/onetouch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/storage/onetouch.c b/drivers/usb/storage/onetouch.c
index dfd42fe9e5f05..98b89ea9e3123 100644
--- a/drivers/usb/storage/onetouch.c
+++ b/drivers/usb/storage/onetouch.c
@@ -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];
@@ -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_;