else
                        lut_index = i;
 
-                 val = regulator_list_hardware_vsel(td->vdd_reg,
+               val = regulator_list_hardware_vsel(td->vdd_reg,
                                                     td->i2c_lut[lut_index]);
                __raw_writel(val, td->lut_base + i * 4);
        }
        int selector;
        unsigned long rate;
        struct dev_pm_opp *opp;
+       int lut;
 
        rcu_read_lock();
 
        v_max = dev_pm_opp_get_voltage(opp);
 
        v = td->soc->min_millivolts * 1000;
-       td->i2c_lut[0] = find_vdd_map_entry_exact(td, v);
-       if (td->i2c_lut[0] < 0)
+       lut = find_vdd_map_entry_exact(td, v);
+       if (lut < 0)
                goto out;
+       td->i2c_lut[0] = lut;
 
        for (j = 1, rate = 0; ; rate++) {
                opp = dev_pm_opp_find_freq_ceil(td->soc->dev, &rate);
 
  *
  * Assert the reset line of the DFLL's DVCO.  No return value.
  */
-void tegra124_clock_assert_dfll_dvco_reset(void)
+static void tegra124_clock_assert_dfll_dvco_reset(void)
 {
        u32 v;
 
  * Deassert the reset line of the DFLL's DVCO, allowing the DVCO to
  * operate.  No return value.
  */
-void tegra124_clock_deassert_dfll_dvco_reset(void)
+static void tegra124_clock_deassert_dfll_dvco_reset(void)
 {
        u32 v;
 
        tegra124_car_barrier();
 }
 
-int tegra124_reset_assert(unsigned long id)
+static int tegra124_reset_assert(unsigned long id)
 {
        if (id == TEGRA124_RST_DFLL_DVCO)
                tegra124_clock_assert_dfll_dvco_reset();
        return 0;
 }
 
-int tegra124_reset_deassert(unsigned long id)
+static int tegra124_reset_deassert(unsigned long id)
 {
        if (id == TEGRA124_RST_DFLL_DVCO)
                tegra124_clock_deassert_dfll_dvco_reset();