1
0
Fork 0
forked from len0rd/rockbox

fuze+: fix radio power up

Change-Id: I7c9e056879c56f7f385ef6a8855d5726cf994b51
This commit is contained in:
Amaury Pouly 2013-08-16 17:23:25 +02:00
parent b1209d4789
commit 630a166a94

View file

@ -39,8 +39,9 @@ bool tuner_power(bool enable)
imx233_pinctrl_enable_gpio(0, 29, enable);
imx233_pinctrl_set_gpio(0, 29, enable);
tuner_enable = enable;
/* give time to power up */
udelay(5);
/* give time to power up, datasheet states than minimum timing time is
* around 100µs so 1 tick should do */
sleep(1);
//imx233_power_set_dcdc_freq(enable, HW_POWER_MISC__FREQSEL__24MHz);
}
return tuner_enable;