mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-29 10:01:25 +00:00
regulator: Make virtual consumer use dev_printk
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
parent
d61c3d56e2
commit
a07ac21714
1 changed files with 18 additions and 16 deletions
|
@ -27,7 +27,8 @@ struct virtual_consumer_data {
|
||||||
unsigned int mode;
|
unsigned int mode;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void update_voltage_constraints(struct virtual_consumer_data *data)
|
static void update_voltage_constraints(struct device *dev,
|
||||||
|
struct virtual_consumer_data *data)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -36,8 +37,8 @@ static void update_voltage_constraints(struct virtual_consumer_data *data)
|
||||||
ret = regulator_set_voltage(data->regulator,
|
ret = regulator_set_voltage(data->regulator,
|
||||||
data->min_uV, data->max_uV);
|
data->min_uV, data->max_uV);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
printk(KERN_ERR "regulator_set_voltage() failed: %d\n",
|
dev_err(dev,
|
||||||
ret);
|
"regulator_set_voltage() failed: %d\n", ret);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,7 +48,7 @@ static void update_voltage_constraints(struct virtual_consumer_data *data)
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
data->enabled = 1;
|
data->enabled = 1;
|
||||||
else
|
else
|
||||||
printk(KERN_ERR "regulator_enable() failed: %d\n",
|
dev_err(dev, "regulator_enable() failed: %d\n",
|
||||||
ret);
|
ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,13 +57,13 @@ static void update_voltage_constraints(struct virtual_consumer_data *data)
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
data->enabled = 0;
|
data->enabled = 0;
|
||||||
else
|
else
|
||||||
printk(KERN_ERR "regulator_disable() failed: %d\n",
|
dev_err(dev, "regulator_disable() failed: %d\n",
|
||||||
ret);
|
ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void update_current_limit_constraints(struct virtual_consumer_data
|
static void update_current_limit_constraints(struct device *dev,
|
||||||
*data)
|
struct virtual_consumer_data *data)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -71,7 +72,8 @@ static void update_current_limit_constraints(struct virtual_consumer_data
|
||||||
ret = regulator_set_current_limit(data->regulator,
|
ret = regulator_set_current_limit(data->regulator,
|
||||||
data->min_uA, data->max_uA);
|
data->min_uA, data->max_uA);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
pr_err("regulator_set_current_limit() failed: %d\n",
|
dev_err(dev,
|
||||||
|
"regulator_set_current_limit() failed: %d\n",
|
||||||
ret);
|
ret);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -82,7 +84,7 @@ static void update_current_limit_constraints(struct virtual_consumer_data
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
data->enabled = 1;
|
data->enabled = 1;
|
||||||
else
|
else
|
||||||
printk(KERN_ERR "regulator_enable() failed: %d\n",
|
dev_err(dev, "regulator_enable() failed: %d\n",
|
||||||
ret);
|
ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +93,7 @@ static void update_current_limit_constraints(struct virtual_consumer_data
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
data->enabled = 0;
|
data->enabled = 0;
|
||||||
else
|
else
|
||||||
printk(KERN_ERR "regulator_disable() failed: %d\n",
|
dev_err(dev, "regulator_disable() failed: %d\n",
|
||||||
ret);
|
ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -115,7 +117,7 @@ static ssize_t set_min_uV(struct device *dev, struct device_attribute *attr,
|
||||||
mutex_lock(&data->lock);
|
mutex_lock(&data->lock);
|
||||||
|
|
||||||
data->min_uV = val;
|
data->min_uV = val;
|
||||||
update_voltage_constraints(data);
|
update_voltage_constraints(dev, data);
|
||||||
|
|
||||||
mutex_unlock(&data->lock);
|
mutex_unlock(&data->lock);
|
||||||
|
|
||||||
|
@ -141,7 +143,7 @@ static ssize_t set_max_uV(struct device *dev, struct device_attribute *attr,
|
||||||
mutex_lock(&data->lock);
|
mutex_lock(&data->lock);
|
||||||
|
|
||||||
data->max_uV = val;
|
data->max_uV = val;
|
||||||
update_voltage_constraints(data);
|
update_voltage_constraints(dev, data);
|
||||||
|
|
||||||
mutex_unlock(&data->lock);
|
mutex_unlock(&data->lock);
|
||||||
|
|
||||||
|
@ -167,7 +169,7 @@ static ssize_t set_min_uA(struct device *dev, struct device_attribute *attr,
|
||||||
mutex_lock(&data->lock);
|
mutex_lock(&data->lock);
|
||||||
|
|
||||||
data->min_uA = val;
|
data->min_uA = val;
|
||||||
update_current_limit_constraints(data);
|
update_current_limit_constraints(dev, data);
|
||||||
|
|
||||||
mutex_unlock(&data->lock);
|
mutex_unlock(&data->lock);
|
||||||
|
|
||||||
|
@ -193,7 +195,7 @@ static ssize_t set_max_uA(struct device *dev, struct device_attribute *attr,
|
||||||
mutex_lock(&data->lock);
|
mutex_lock(&data->lock);
|
||||||
|
|
||||||
data->max_uA = val;
|
data->max_uA = val;
|
||||||
update_current_limit_constraints(data);
|
update_current_limit_constraints(dev, data);
|
||||||
|
|
||||||
mutex_unlock(&data->lock);
|
mutex_unlock(&data->lock);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue