Skip to content

Commit

Permalink
[media] cx25821-alsa.c: Add braces to else clause
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Leonid V. Fedorenchik authored and Mauro Carvalho Chehab committed Nov 24, 2011
1 parent 767f1d4 commit 0ef8007
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/media/video/cx25821/cx25821-alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0ef8007

Please sign in to comment.