Lines Matching refs:por
26 struct regulator *por; member
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_enable(cx20442->por); in cx20442_set_bias_level()
340 if (IS_ERR(cx20442->por)) in cx20442_set_bias_level()
341 err = PTR_ERR(cx20442->por); in cx20442_set_bias_level()
343 err = regulator_disable(cx20442->por); in cx20442_set_bias_level()
360 cx20442->por = regulator_get(component->dev, "POR"); in cx20442_component_probe()
361 if (IS_ERR(cx20442->por)) { in cx20442_component_probe()
362 int err = PTR_ERR(cx20442->por); in cx20442_component_probe()
400 if (!IS_ERR(cx20442->por)) { in cx20442_component_remove()
402 regulator_put(cx20442->por); in cx20442_component_remove()