Lines Matching refs:ldo
231 struct regulator *ldo = NULL;
261 ldo = regulator_get(NULL, ldostr);
262 if (!ldo || IS_ERR(ldo)) {
263 LOG("\n\n\n%s get ldo error,please mod this\n\n\n",
268 regulator_set_voltage(ldo, 3000000, 3000000);
270 ret = regulator_enable(ldo);
272 LOG("ldo enable failed\n");
277 while (regulator_is_enabled(ldo) > 0) {
278 ret = regulator_disable(ldo);
280 LOG("ldo disable failed\n");
285 regulator_put(ldo);