Staging: line6: static function cleanups
This fixes all of the static function warnings that sparse complains
about.
Cc: Markus Grabner <grabner@icg.tugraz.at>
Cc: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
diff --git a/drivers/staging/line6/audio.c b/drivers/staging/line6/audio.c
index f6ad274..d035420 100644
--- a/drivers/staging/line6/audio.c
+++ b/drivers/staging/line6/audio.c
@@ -10,6 +10,7 @@
*/
#include "driver.h"
+#include "audio.h"
#include <sound/core.h>
#include <sound/initval.h>
diff --git a/drivers/staging/line6/capture.c b/drivers/staging/line6/capture.c
index 6660c0b..a4628bd 100644
--- a/drivers/staging/line6/capture.c
+++ b/drivers/staging/line6/capture.c
@@ -18,6 +18,7 @@
#include "audio.h"
#include "pcm.h"
#include "pod.h"
+#include "capture.h"
/*
diff --git a/drivers/staging/line6/midibuf.c b/drivers/staging/line6/midibuf.c
index 2f86c66..1f5934e 100644
--- a/drivers/staging/line6/midibuf.c
+++ b/drivers/staging/line6/midibuf.c
@@ -16,7 +16,7 @@
#include "midibuf.h"
-int midibuf_message_length(unsigned char code)
+static int midibuf_message_length(unsigned char code)
{
if(code < 0x80)
return -1;
@@ -59,12 +59,12 @@
this->size, this->split, this->pos_read, this->pos_write, this->full, this->command_prev);
}
-int midibuf_is_empty(struct MidiBuffer *this)
+static int midibuf_is_empty(struct MidiBuffer *this)
{
return (this->pos_read == this->pos_write) && !this->full;
}
-int midibuf_is_full(struct MidiBuffer *this)
+static int midibuf_is_full(struct MidiBuffer *this)
{
return this->full;
}
diff --git a/drivers/staging/line6/playback.c b/drivers/staging/line6/playback.c
index c86e89c5..c30c627 100644
--- a/drivers/staging/line6/playback.c
+++ b/drivers/staging/line6/playback.c
@@ -18,6 +18,7 @@
#include "audio.h"
#include "pcm.h"
#include "pod.h"
+#include "playback.h"
/*
diff --git a/drivers/staging/line6/pod.c b/drivers/staging/line6/pod.c
index eba804f..614e9dc 100644
--- a/drivers/staging/line6/pod.c
+++ b/drivers/staging/line6/pod.c
@@ -398,7 +398,7 @@
/*
Send channel number (i.e., switch to a different sound).
*/
-void pod_send_channel(struct usb_line6_pod *pod, int value)
+static void pod_send_channel(struct usb_line6_pod *pod, int value)
{
line6_invalidate_current(&pod->dumpreq);
@@ -951,7 +951,7 @@
/*
Create sysfs entries.
*/
-int pod_create_files2(struct device *dev)
+static int pod_create_files2(struct device *dev)
{
int err;
diff --git a/drivers/staging/line6/variax.c b/drivers/staging/line6/variax.c
index b277647..f25493d 100644
--- a/drivers/staging/line6/variax.c
+++ b/drivers/staging/line6/variax.c
@@ -392,7 +392,7 @@
/*
Create sysfs entries.
*/
-int variax_create_files2(struct device *dev)
+static int variax_create_files2(struct device *dev)
{
int err;
CHECK_RETURN(device_create_file(dev, &dev_attr_model));