diff options
Diffstat (limited to 'drivers/media/video/em28xx')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-video.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/media/video/em28xx/em28xx-video.c b/drivers/media/video/em28xx/em28xx-video.c index c5593526a6e..033ecb45256 100644 --- a/drivers/media/video/em28xx/em28xx-video.c +++ b/drivers/media/video/em28xx/em28xx-video.c | |||
@@ -790,15 +790,12 @@ static int res_get(struct em28xx_fh *fh) | |||
790 | if (fh->stream_on) | 790 | if (fh->stream_on) |
791 | return rc; | 791 | return rc; |
792 | 792 | ||
793 | mutex_lock(&dev->lock); | ||
794 | |||
795 | if (dev->stream_on) | 793 | if (dev->stream_on) |
796 | rc = -EINVAL; | 794 | return -EINVAL; |
797 | else { | ||
798 | dev->stream_on = 1; | ||
799 | fh->stream_on = 1; | ||
800 | } | ||
801 | 795 | ||
796 | mutex_lock(&dev->lock); | ||
797 | dev->stream_on = 1; | ||
798 | fh->stream_on = 1; | ||
802 | mutex_unlock(&dev->lock); | 799 | mutex_unlock(&dev->lock); |
803 | return rc; | 800 | return rc; |
804 | } | 801 | } |