Commit 3d48586c authored by Adrian Bunk's avatar Adrian Bunk Committed by Greg Kroah-Hartman

[PATCH] USB: small cleanups

This patch contains the following cleanups:
- make needlessly global functions static
- every file should #include the headers containing the prototypes for
  it's global functions
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4bf0ba86
...@@ -646,14 +646,14 @@ static void usbatm_destroy_instance(struct kref *kref) ...@@ -646,14 +646,14 @@ static void usbatm_destroy_instance(struct kref *kref)
kfree(instance); kfree(instance);
} }
void usbatm_get_instance(struct usbatm_data *instance) static void usbatm_get_instance(struct usbatm_data *instance)
{ {
dbg("%s", __func__); dbg("%s", __func__);
kref_get(&instance->refcount); kref_get(&instance->refcount);
} }
void usbatm_put_instance(struct usbatm_data *instance) static void usbatm_put_instance(struct usbatm_data *instance)
{ {
dbg("%s", __func__); dbg("%s", __func__);
......
...@@ -2843,7 +2843,7 @@ static struct edge_buf *edge_buf_alloc(unsigned int size) ...@@ -2843,7 +2843,7 @@ static struct edge_buf *edge_buf_alloc(unsigned int size)
* Free the buffer and all associated memory. * Free the buffer and all associated memory.
*/ */
void edge_buf_free(struct edge_buf *eb) static void edge_buf_free(struct edge_buf *eb)
{ {
if (eb) { if (eb) {
kfree(eb->buf_buf); kfree(eb->buf_buf);
......
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