Commit 0ef80072 authored by Leonid V. Fedorenchik's avatar Leonid V. Fedorenchik Committed by Mauro Carvalho Chehab
Browse files

[media] cx25821-alsa.c: Add braces to else clause



Add curly braces around else clause because corresponding if has them.

Signed-off-by: default avatarLeonid V. Fedorenchik <leonidsbox@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 767f1d43
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -317,9 +317,10 @@ 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;
		cx_write(PCI_INT_STAT, status);