Commit 43c1e98c authored by Adrian Bunk's avatar Adrian Bunk Committed by Greg Kroah-Hartman

USB: storage/onetouch.c: make a function static

This patch makes the needlessly global onetouch_release_input() static.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e42dc36b
......@@ -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_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment