1
0
Fork 0
forked from len0rd/rockbox

fuze+: the radio chip needs a few milliseconds to power up

Change-Id: I7e7f3bf86ab69d6c7e94e8b16c1a26f74a76f1a2
This commit is contained in:
Amaury Pouly 2012-02-05 18:13:23 +01:00
parent 4b85c93cd8
commit e67a1af35f

View file

@ -38,6 +38,8 @@ bool tuner_power(bool enable)
imx233_enable_gpio_output(0, 29, enable);
imx233_set_gpio_output(0, 29, enable);
tuner_enable = enable;
/* give time to power up */
udelay(5);
//imx233_power_set_dcdc_freq(enable, HW_POWER_MISC__FREQSEL__24MHz);
}
return tuner_enable;