Commit 5e6e81b2 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

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

drivers/media/pci/cx18/cx18-alsa-main.c:200:5: warning: no previous prototype for 'cx18_alsa_load' [-Wmissing-prototypes]
drivers/media/pci/cx18/cx18-alsa-pcm.c:325:5: warning: no previous prototype for 'snd_cx18_pcm_create' [-Wmissing-prototypes]
drivers/media/pci/cx18/cx18-alsa-pcm.c:72:6: warning: no previous prototype for 'cx18_alsa_announce_pcm_data' [-Wmissing-prototypes]
drivers/media/pci/cx18/cx18-streams.c:100:6: warning: no previous prototype for 'cx18_dma_free' [-Wmissing-prototypes]

Cc: Andy Walls <awalls@md.metrocast.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 4e373217
...@@ -197,7 +197,7 @@ static int snd_cx18_init(struct v4l2_device *v4l2_dev) ...@@ -197,7 +197,7 @@ static int snd_cx18_init(struct v4l2_device *v4l2_dev)
return ret; return ret;
} }
int cx18_alsa_load(struct cx18 *cx) static int __init cx18_alsa_load(struct cx18 *cx)
{ {
struct v4l2_device *v4l2_dev = &cx->v4l2_dev; struct v4l2_device *v4l2_dev = &cx->v4l2_dev;
struct cx18_stream *s; struct cx18_stream *s;
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include "cx18-streams.h" #include "cx18-streams.h"
#include "cx18-fileops.h" #include "cx18-fileops.h"
#include "cx18-alsa.h" #include "cx18-alsa.h"
#include "cx18-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);
......
...@@ -97,7 +97,7 @@ static struct { ...@@ -97,7 +97,7 @@ static struct {
}; };
void cx18_dma_free(struct videobuf_queue *q, static void cx18_dma_free(struct videobuf_queue *q,
struct cx18_stream *s, struct cx18_videobuf_buffer *buf) struct cx18_stream *s, struct cx18_videobuf_buffer *buf)
{ {
videobuf_waiton(q, &buf->vb, 0, 0); videobuf_waiton(q, &buf->vb, 0, 0);
......
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