From: Adrian Bunk Date: Mon, 28 Apr 2008 15:39:37 +0000 (+0300) Subject: USB: storage/onetouch.c: make a function static X-Git-Tag: v2.6.26-rc1~11^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43c1e98c87013757ef02c50a6e43bafeb6871f68;p=platform%2Fkernel%2Flinux-3.10.git USB: storage/onetouch.c: make a function static This patch makes the needlessly global onetouch_release_input() static. Signed-off-by: Adrian Bunk Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/storage/onetouch.c b/drivers/usb/storage/onetouch.c index dfd42fe..98b89ea 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_;