summaryrefslogtreecommitdiff
path: root/drivers/media/video/cx25821
diff options
context:
space:
mode:
authorLeonid V. Fedorenchik <leonidsbox@gmail.com>2011-10-22 01:43:22 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-11-24 18:33:53 -0200
commit0ef80072014720b79596f9582112034cfe949fd3 (patch)
treed8667b981652c176ab5ec067ce7746c35ea03f8a /drivers/media/video/cx25821
parent767f1d437db41e888f5da2a79cafd4a11b319cfd (diff)
[media] cx25821-alsa.c: Add braces to else clause
Add curly braces around else clause because corresponding if has them. Signed-off-by: Leonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx25821')
-rw-r--r--drivers/media/video/cx25821/cx25821-alsa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/cx25821/cx25821-alsa.c b/drivers/media/video/cx25821/cx25821-alsa.c
index 259324a1092a..92a8694b85fc 100644
--- a/drivers/media/video/cx25821/cx25821-alsa.c
+++ b/drivers/media/video/cx25821/cx25821-alsa.c
@@ -317,8 +317,9 @@ static irqreturn_t cx25821_irq(int irq, void *dev_id)
cx25821_aud_irq(chip, audint_status,
audint_mask);
break;
- } else
+ } else {
goto out;
+ }
}
handled = 1;