[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>
This commit is contained in:
Mauro Carvalho Chehab 2013-01-05 01:27:21 -02:00
parent 317efce991
commit 3a799c27b3
1 changed files with 1 additions and 1 deletions

View File

@ -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;