Commit 43c1e98c87013757ef02c50a6e43bafeb6871f68
Committed by
Greg Kroah-Hartman
1 parent
e42dc36b2c
Exists in
master
and in
7 other branches
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>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
drivers/usb/storage/onetouch.c
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 | #include "onetouch.h" |
39 | 39 | #include "debug.h" |
40 | 40 | |
41 | -void onetouch_release_input(void *onetouch_); | |
41 | +static void onetouch_release_input(void *onetouch_); | |
42 | 42 | |
43 | 43 | struct usb_onetouch { |
44 | 44 | char name[128]; |
... | ... | @@ -223,7 +223,7 @@ |
223 | 223 | return error; |
224 | 224 | } |
225 | 225 | |
226 | -void onetouch_release_input(void *onetouch_) | |
226 | +static void onetouch_release_input(void *onetouch_) | |
227 | 227 | { |
228 | 228 | struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_; |
229 | 229 |