Commit 2aebbf67 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] ivtv: get rid of warning: no previous prototype

drivers/media/pci/ivtv/ivtv-alsa-main.c:208:5: warning: no previous prototype for 'ivtv_alsa_load' [-Wmissing-prototypes]
drivers/media/pci/ivtv/ivtv-alsa-pcm.c:325:5: warning: no previous prototype for 'snd_ivtv_pcm_create' [-Wmissing-prototypes]
drivers/media/pci/ivtv/ivtv-alsa-pcm.c:72:6: warning: no previous prototype for 'ivtv_alsa_announce_pcm_data' [-Wmissing-prototypes]
drivers/media/pci/ivtv/ivtv-firmware.c:279:5: warning: no previous prototype for 'ivtv_firmware_restart' [-Wmissing-prototypes]
drivers/media/pci/ivtv/ivtv-ioctl.c:1171:5: warning: no previous prototype for 'ivtv_s_std' [-Wmissing-prototypes]

Cc: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7151e259
...@@ -205,7 +205,7 @@ static int snd_ivtv_init(struct v4l2_device *v4l2_dev) ...@@ -205,7 +205,7 @@ static int snd_ivtv_init(struct v4l2_device *v4l2_dev)
return ret; return ret;
} }
int ivtv_alsa_load(struct ivtv *itv) static int __init ivtv_alsa_load(struct ivtv *itv)
{ {
struct v4l2_device *v4l2_dev = &itv->v4l2_dev; struct v4l2_device *v4l2_dev = &itv->v4l2_dev;
struct ivtv_stream *s; struct ivtv_stream *s;
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include "ivtv-streams.h" #include "ivtv-streams.h"
#include "ivtv-fileops.h" #include "ivtv-fileops.h"
#include "ivtv-alsa.h" #include "ivtv-alsa.h"
#include "ivtv-alsa-pcm.h"
static unsigned int pcm_debug; static unsigned int pcm_debug;
module_param(pcm_debug, int, 0644); module_param(pcm_debug, int, 0644);
...@@ -69,7 +70,8 @@ static struct snd_pcm_hardware snd_ivtv_hw_capture = { ...@@ -69,7 +70,8 @@ static struct snd_pcm_hardware snd_ivtv_hw_capture = {
.periods_max = 98, /* 12544, */ .periods_max = 98, /* 12544, */
}; };
void ivtv_alsa_announce_pcm_data(struct snd_ivtv_card *itvsc, u8 *pcm_data, static void ivtv_alsa_announce_pcm_data(struct snd_ivtv_card *itvsc,
u8 *pcm_data,
size_t num_bytes) size_t num_bytes)
{ {
struct snd_pcm_substream *substream; struct snd_pcm_substream *substream;
......
...@@ -21,7 +21,3 @@ ...@@ -21,7 +21,3 @@
*/ */
int __init snd_ivtv_pcm_create(struct snd_ivtv_card *itvsc); int __init snd_ivtv_pcm_create(struct snd_ivtv_card *itvsc);
/* Used by ivtv driver to announce the PCM data to the module */
void ivtv_alsa_announce_pcm_data(struct snd_ivtv_card *card, u8 *pcm_data,
size_t num_bytes);
...@@ -276,7 +276,7 @@ void ivtv_init_mpeg_decoder(struct ivtv *itv) ...@@ -276,7 +276,7 @@ void ivtv_init_mpeg_decoder(struct ivtv *itv)
} }
/* Try to restart the card & restore previous settings */ /* Try to restart the card & restore previous settings */
int ivtv_firmware_restart(struct ivtv *itv) static int ivtv_firmware_restart(struct ivtv *itv)
{ {
int rc = 0; int rc = 0;
v4l2_std_id std; v4l2_std_id std;
......
...@@ -1168,7 +1168,7 @@ void ivtv_s_std_dec(struct ivtv *itv, v4l2_std_id *std) ...@@ -1168,7 +1168,7 @@ void ivtv_s_std_dec(struct ivtv *itv, v4l2_std_id *std)
} }
} }
int ivtv_s_std(struct file *file, void *fh, v4l2_std_id *std) static int ivtv_s_std(struct file *file, void *fh, v4l2_std_id *std)
{ {
struct ivtv *itv = fh2id(fh)->itv; struct ivtv *itv = fh2id(fh)->itv;
......
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