]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
MX28: Shuffle around the power management code
authorMarek Vasut <marex@denx.de>
Mon, 6 Aug 2012 11:34:55 +0000 (11:34 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sat, 1 Sep 2012 12:58:25 +0000 (14:58 +0200)
Move some function calls to a more appropriate place, so they're
called only when needed.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Stefano Babic <sbabic@denx.de>
arch/arm/cpu/arm926ejs/mxs/spl_power_init.c

index 35106bae96a7de5c514dfa90bf08eb91b8fc4c00..4b917bd186df4ea62651690c1a99c91ff2b0118a 100644 (file)
@@ -661,17 +661,14 @@ void mxs_power_configure_power_source(void)
 
        mxs_src_power_init();
 
-       batt_ready = mxs_is_batt_ready();
-
        if (readl(&power_regs->hw_power_sts) & POWER_STS_VDD5V_GT_VDDIO) {
-               batt_good = mxs_is_batt_good();
+               batt_ready = mxs_is_batt_ready();
                if (batt_ready) {
                        /* 5V source detected, good battery detected. */
                        mxs_batt_boot();
                } else {
-                       if (batt_good) {
-                               /* 5V source detected, low battery detceted. */
-                       } else {
+                       batt_good = mxs_is_batt_good();
+                       if (!batt_good) {
                                /* 5V source detected, bad battery detected. */
                                writel(LRADC_CONVERSION_AUTOMATIC,
                                        &lradc_regs->hw_lradc_conversion_clr);