aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2012-10-27 13:16:36 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-10-27 16:14:14 -0400
commitd9e81a5c4886a8a57688b4781c6e306ecad3b8af (patch)
tree8641c42b96717198234a0e3750e7af74b46c3484
parent1885fd2d67b9822de834c86d3f69d6fd634a0e09 (diff)
[media] vp702x: get rid of warning: no previous prototype
drivers/media/usb/dvb-usb/vp702x.c:70:5: warning: no previous prototype for 'vp702x_usb_out_op_unlocked' [-Wmissing-prototypes] drivers/media/usb/dvb-usb/vp702x.c:89:5: warning: no previous prototype for 'vp702x_usb_out_op' [-Wmissing-prototypes] Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/usb/dvb-usb/vp702x.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/usb/dvb-usb/vp702x.c b/drivers/media/usb/dvb-usb/vp702x.c
index 07c673a6e764..22cf9f96cb9e 100644
--- a/drivers/media/usb/dvb-usb/vp702x.c
+++ b/drivers/media/usb/dvb-usb/vp702x.c
@@ -56,7 +56,7 @@ static int vp702x_usb_in_op_unlocked(struct dvb_usb_device *d, u8 req,
56} 56}
57 57
58int vp702x_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value, 58int vp702x_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value,
59 u16 index, u8 *b, int blen) 59 u16 index, u8 *b, int blen)
60{ 60{
61 int ret; 61 int ret;
62 62
@@ -67,8 +67,8 @@ int vp702x_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value,
67 return ret; 67 return ret;
68} 68}
69 69
70int vp702x_usb_out_op_unlocked(struct dvb_usb_device *d, u8 req, u16 value, 70static int vp702x_usb_out_op_unlocked(struct dvb_usb_device *d, u8 req,
71 u16 index, u8 *b, int blen) 71 u16 value, u16 index, u8 *b, int blen)
72{ 72{
73 int ret; 73 int ret;
74 deb_xfer("out: req. %02x, val: %04x, ind: %04x, buffer: ",req,value,index); 74 deb_xfer("out: req. %02x, val: %04x, ind: %04x, buffer: ",req,value,index);
@@ -86,7 +86,7 @@ int vp702x_usb_out_op_unlocked(struct dvb_usb_device *d, u8 req, u16 value,
86 return 0; 86 return 0;
87} 87}
88 88
89int vp702x_usb_out_op(struct dvb_usb_device *d, u8 req, u16 value, 89static int vp702x_usb_out_op(struct dvb_usb_device *d, u8 req, u16 value,
90 u16 index, u8 *b, int blen) 90 u16 index, u8 *b, int blen)
91{ 91{
92 int ret; 92 int ret;