summaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorMauro Carvalho Chehab2014-09-24 23:23:23 +0200
committerMauro Carvalho Chehab2014-09-26 11:47:59 +0200
commit0db3241458685b22b6cd4db363722e6932244601 (patch)
tree8100873bc171878f5f9835c8b08e76d95af798cc /drivers/media
parent[media] drxd: remove a dead code (diff)
downloadkernel-qcow2-linux-0db3241458685b22b6cd4db363722e6932244601.tar.gz
kernel-qcow2-linux-0db3241458685b22b6cd4db363722e6932244601.tar.xz
kernel-qcow2-linux-0db3241458685b22b6cd4db363722e6932244601.zip
[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.c2
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)
nonblock = !!(substream->f_flags & O_NONBLOCK);
if (nonblock) {
if (!mutex_trylock(&dev->lock))
- return -EAGAIN;
+ return -EAGAIN;
} else
mutex_lock(&dev->lock);