diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-24 17:23:23 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-26 05:47:59 -0400 |
commit | 0db3241458685b22b6cd4db363722e6932244601 (patch) | |
tree | 8100873bc171878f5f9835c8b08e76d95af798cc /drivers/media | |
parent | b39ba19cf3d0f8a7c86bfcf0b0964b0d4c1fae33 (diff) |
[media] em28xx: Fix identation
drivers/media/usb/em28xx/em28xx-audio.c:270 snd_em28xx_capture_open() warn: if statement not indented
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-audio.c b/drivers/media/usb/em28xx/em28xx-audio.c index 90c7a83989d1..957c7ae30efe 100644 --- a/drivers/media/usb/em28xx/em28xx-audio.c +++ b/drivers/media/usb/em28xx/em28xx-audio.c | |||
@@ -268,7 +268,7 @@ static int snd_em28xx_capture_open(struct snd_pcm_substream *substream) | |||
268 | nonblock = !!(substream->f_flags & O_NONBLOCK); | 268 | nonblock = !!(substream->f_flags & O_NONBLOCK); |
269 | if (nonblock) { | 269 | if (nonblock) { |
270 | if (!mutex_trylock(&dev->lock)) | 270 | if (!mutex_trylock(&dev->lock)) |
271 | return -EAGAIN; | 271 | return -EAGAIN; |
272 | } else | 272 | } else |
273 | mutex_lock(&dev->lock); | 273 | mutex_lock(&dev->lock); |
274 | 274 | ||