[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>
This commit is contained in:
Leonid V. Fedorenchik 2011-10-22 01:43:22 -03:00 committed by Mauro Carvalho Chehab
parent 767f1d437d
commit 0ef8007201
1 changed files with 2 additions and 1 deletions

View File

@ -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);