sandbox: power: Update PMIC driver to use log

Use the log functions instead of pr_...() so we can avoid using __func__.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
Simon Glass 2022-09-06 20:26:54 -06:00 committed by Tom Rini
parent b7f134eece
commit 96d0c4514f

View File

@ -4,11 +4,14 @@
* Przemyslaw Marczak <p.marczak@samsung.com> * Przemyslaw Marczak <p.marczak@samsung.com>
*/ */
#define LOG_CATEGORY UCLASS_PMIC
#include <common.h> #include <common.h>
#include <fdtdec.h> #include <fdtdec.h>
#include <errno.h> #include <errno.h>
#include <dm.h> #include <dm.h>
#include <i2c.h> #include <i2c.h>
#include <log.h>
#include <power/pmic.h> #include <power/pmic.h>
#include <power/regulator.h> #include <power/regulator.h>
#include <power/sandbox_pmic.h> #include <power/sandbox_pmic.h>
@ -28,7 +31,7 @@ static int sandbox_pmic_write(struct udevice *dev, uint reg,
const uint8_t *buff, int len) const uint8_t *buff, int len)
{ {
if (dm_i2c_write(dev, reg, buff, len)) { if (dm_i2c_write(dev, reg, buff, len)) {
pr_err("write error to device: %p register: %#x!\n", dev, reg); log_err("write error to device: %p register: %#x!\n", dev, reg);
return -EIO; return -EIO;
} }
@ -39,7 +42,7 @@ static int sandbox_pmic_read(struct udevice *dev, uint reg,
uint8_t *buff, int len) uint8_t *buff, int len)
{ {
if (dm_i2c_read(dev, reg, buff, len)) { if (dm_i2c_read(dev, reg, buff, len)) {
pr_err("read error from device: %p register: %#x!\n", dev, reg); log_err("read error from device: %p register: %#x!\n", dev, reg);
return -EIO; return -EIO;
} }
@ -49,8 +52,7 @@ static int sandbox_pmic_read(struct udevice *dev, uint reg,
static int sandbox_pmic_bind(struct udevice *dev) static int sandbox_pmic_bind(struct udevice *dev)
{ {
if (!pmic_bind_children(dev, dev_ofnode(dev), pmic_children_info)) if (!pmic_bind_children(dev, dev_ofnode(dev), pmic_children_info))
pr_err("%s:%d PMIC: %s - no child found!", __func__, __LINE__, log_err("PMIC: %s - no child found!\n", dev->name);
dev->name);
/* Always return success for this device - allows for PMIC I/O */ /* Always return success for this device - allows for PMIC I/O */
return 0; return 0;