power: regulator: replace printf() with pr_err()
Replace printf() with pr_err() because pr_err() has a uniform print format and takes into consideration the log levels supported. Signed-off-by: Shree Ramamoorthy <s-ramamoorthy@ti.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:

committed by
Jaehoon Chung

parent
6a0db9ee03
commit
eda65fa42b
@@ -250,7 +250,7 @@ static int tps65219_ldo_probe(struct udevice *dev)
|
||||
/* idx must be in 1..TPS65219_LDO_NUM */
|
||||
idx = dev->driver_data;
|
||||
if (idx < 1 || idx > TPS65219_LDO_NUM) {
|
||||
printf("Wrong ID for regulator\n");
|
||||
pr_err("Wrong ID for regulator\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@@ -271,7 +271,7 @@ static int tps65219_buck_probe(struct udevice *dev)
|
||||
/* idx must be in 1..TPS65219_BUCK_NUM */
|
||||
idx = dev->driver_data;
|
||||
if (idx < 1 || idx > TPS65219_BUCK_NUM) {
|
||||
printf("Wrong ID for regulator\n");
|
||||
pr_err("Wrong ID for regulator\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user