summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/erosqnative
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/erosqnative')
-rw-r--r--firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c b/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
index 325893a4b7..7bb8e4582e 100644
--- a/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
+++ b/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
@@ -78,8 +78,10 @@ void power_init(void)
78 * OF's setting, although it's not strictly within the USB spec. */ 78 * OF's setting, although it's not strictly within the USB spec. */
79 axp_set_charge_current(780); 79 axp_set_charge_current(780);
80 80
81 /* Short delay to give power outputs time to stabilize */ 81 /* Delay to give power outputs time to stabilize.
82 mdelay(5); 82 * From testing, 170 is the minimum. Make it
83 * 190 for safety. */
84 mdelay(190);
83} 85}
84 86
85#ifdef HAVE_USB_CHARGING_ENABLE 87#ifdef HAVE_USB_CHARGING_ENABLE