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>
This commit is contained in:
Adrian Bunk 2008-04-28 18:39:37 +03:00 committed by Greg Kroah-Hartman
parent e42dc36b2c
commit 43c1e98c87
1 changed files with 2 additions and 2 deletions

View File

@ -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_;