aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonid V. Fedorenchik <leonidsbox@gmail.com>2011-10-22 00:43:22 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-11-24 15:33:53 -0500
commit0ef80072014720b79596f9582112034cfe949fd3 (patch)
treed8667b981652c176ab5ec067ce7746c35ea03f8a
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>
-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)
317 cx25821_aud_irq(chip, audint_status, 317 cx25821_aud_irq(chip, audint_status,
318 audint_mask); 318 audint_mask);
319 break; 319 break;
320 } else 320 } else {
321 goto out; 321 goto out;
322 }
322 } 323 }
323 324
324 handled = 1; 325 handled = 1;