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

[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
...@@ -317,9 +317,10 @@ static irqreturn_t cx25821_irq(int irq, void *dev_id) ...@@ -317,9 +317,10 @@ static irqreturn_t cx25821_irq(int irq, void *dev_id)
cx25821_aud_irq(chip, audint_status, cx25821_aud_irq(chip, audint_status,
audint_mask); audint_mask);
break; break;
} else } else {
goto out; goto out;
} }
}
handled = 1; handled = 1;
cx_write(PCI_INT_STAT, status); cx_write(PCI_INT_STAT, status);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment