Lines Matching refs:min_uV
82 int min_uV, int max_uV) in wm831x_gp_ldo_map_voltage() argument
86 if (min_uV < 900000) in wm831x_gp_ldo_map_voltage()
88 else if (min_uV < 1700000) in wm831x_gp_ldo_map_voltage()
89 vsel = ((min_uV - 900000) / 50000); in wm831x_gp_ldo_map_voltage()
91 vsel = ((min_uV - 1700000) / 100000) in wm831x_gp_ldo_map_voltage()
95 if (volt < min_uV || volt > max_uV) in wm831x_gp_ldo_map_voltage()
381 int min_uV, int max_uV) in wm831x_aldo_map_voltage() argument
385 if (min_uV < 1000000) in wm831x_aldo_map_voltage()
387 else if (min_uV < 1700000) in wm831x_aldo_map_voltage()
388 vsel = ((min_uV - 1000000) / 50000); in wm831x_aldo_map_voltage()
390 vsel = ((min_uV - 1700000) / 100000) in wm831x_aldo_map_voltage()
394 if (volt < min_uV || volt > max_uV) in wm831x_aldo_map_voltage()
714 ldo->desc.min_uV = 800000; in wm831x_alive_ldo_probe()