mirror of https://gitee.com/openkylin/linux.git
[media] bcm3510: fix indentation
drivers/media/dvb-frontends/bcm3510.c:688 bcm3510_reset() warn: inconsistent indenting drivers/media/dvb-frontends/bcm3510.c:711 bcm3510_clear_reset() warn: inconsistent indenting Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
ebb326341c
commit
361f2e8d97
|
@ -685,7 +685,7 @@ static int bcm3510_reset(struct bcm3510_state *st)
|
|||
if ((ret = bcm3510_writeB(st,0xa0,v)) < 0)
|
||||
return ret;
|
||||
|
||||
t = jiffies + 3*HZ;
|
||||
t = jiffies + 3*HZ;
|
||||
while (time_before(jiffies, t)) {
|
||||
msleep(10);
|
||||
if ((ret = bcm3510_readB(st,0xa2,&v)) < 0)
|
||||
|
@ -708,7 +708,7 @@ static int bcm3510_clear_reset(struct bcm3510_state *st)
|
|||
if ((ret = bcm3510_writeB(st,0xa0,v)) < 0)
|
||||
return ret;
|
||||
|
||||
t = jiffies + 3*HZ;
|
||||
t = jiffies + 3*HZ;
|
||||
while (time_before(jiffies, t)) {
|
||||
msleep(10);
|
||||
if ((ret = bcm3510_readB(st,0xa2,&v)) < 0)
|
||||
|
|
Loading…
Reference in New Issue