diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-01-05 01:27:21 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-01-05 01:32:18 -0200 |
commit | 3a799c27b3faebaf5a7a6149dfe8f705451b241f (patch) | |
tree | 8f6311c120c29c7816b088e73490533e9b0844f0 /drivers/media/usb | |
parent | 317efce991620adc589b3005b9baed433dcb2a56 (diff) | |
download | op-kernel-dev-3a799c27b3faebaf5a7a6149dfe8f705451b241f.zip op-kernel-dev-3a799c27b3faebaf5a7a6149dfe8f705451b241f.tar.gz |
[media] em28xx: declare em28xx_stop_streaming as static
That fixes the following warning:
drivers/media/usb/em28xx/em28xx-video.c:611:5: warning: no previous prototype for 'em28xx_stop_streaming' [-Wmissing-prototypes]
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-video.c b/drivers/media/usb/em28xx/em28xx-video.c index 40b96d1..75027e3 100644 --- a/drivers/media/usb/em28xx/em28xx-video.c +++ b/drivers/media/usb/em28xx/em28xx-video.c @@ -608,7 +608,7 @@ fail: return rc; } -int em28xx_stop_streaming(struct vb2_queue *vq) +static int em28xx_stop_streaming(struct vb2_queue *vq) { struct em28xx *dev = vb2_get_drv_priv(vq); struct em28xx_dmaqueue *vidq = &dev->vidq; |