From: Mauro Carvalho Chehab Date: Wed, 24 Sep 2014 21:23:23 +0000 (-0300) Subject: [media] em28xx: Fix identation X-Git-Tag: v3.18-rc1~101^2^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0db3241458685b22b6cd4db363722e6932244601;p=karo-tx-linux.git [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 --- 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);