Lines Matching refs:por
26 struct regulator *por; member
324 if (IS_ERR(cx20442->por)) in cx20442_set_bias_level()
325 err = PTR_ERR(cx20442->por); in cx20442_set_bias_level()
327 err = regulator_enable(cx20442->por); in cx20442_set_bias_level()
332 if (IS_ERR(cx20442->por)) in cx20442_set_bias_level()
333 err = PTR_ERR(cx20442->por); in cx20442_set_bias_level()
335 err = regulator_disable(cx20442->por); in cx20442_set_bias_level()
352 cx20442->por = regulator_get(component->dev, "POR"); in cx20442_component_probe()
353 if (IS_ERR(cx20442->por)) { in cx20442_component_probe()
354 int err = PTR_ERR(cx20442->por); in cx20442_component_probe()
392 if (!IS_ERR(cx20442->por)) { in cx20442_component_remove()
394 regulator_put(cx20442->por); in cx20442_component_remove()