Commit b25ed9c5 authored by Devin Heitmueller's avatar Devin Heitmueller Committed by Mauro Carvalho Chehab

V4L/DVB (11794): au0828: reduce reset time for xc5000 to 10ms

The xc5000 datasheet indicates that the reset pin only needs to be held low
for 10ms.  Reduce the value accordingly, which speeds up the firmware load
time a bit.
Signed-off-by: default avatarDevin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7f05b530
...@@ -136,9 +136,9 @@ int au0828_tuner_callback(void *priv, int component, int command, int arg) ...@@ -136,9 +136,9 @@ int au0828_tuner_callback(void *priv, int component, int command, int arg)
/* Tuner Reset Command from xc5000 */ /* Tuner Reset Command from xc5000 */
/* Drive the tuner into reset and out */ /* Drive the tuner into reset and out */
au0828_clear(dev, REG_001, 2); au0828_clear(dev, REG_001, 2);
mdelay(200); mdelay(10);
au0828_set(dev, REG_001, 2); au0828_set(dev, REG_001, 2);
mdelay(50); mdelay(10);
return 0; return 0;
} else { } else {
printk(KERN_ERR printk(KERN_ERR
......
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