V4L/DVB (6836): Fix CodingStyle troubles caused by the previous cx88 commits

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Mauro Carvalho Chehab 2007-12-17 10:35:59 -03:00
parent 36e05a4475
commit d8f69971d8
2 changed files with 5 additions and 7 deletions

View File

@ -594,13 +594,11 @@ static int blackbird_start_codec(struct file *file, void *priv)
int lastchange = -1;
int lastval = 0;
for (i=0; (i < 10) && (i < (lastchange + 4)); i++)
{
for (i = 0; (i < 10) && (i < (lastchange + 4)); i++) {
reg = cx_read(AUD_STATUS);
dprintk(1, "AUD_STATUS:%dL: 0x%x\n", i, reg);
if ((reg & 0x0F) != lastval)
{
if ((reg & 0x0F) != lastval) {
lastval = reg & 0x0F;
lastchange = i;
}