sandbox: power: Update PMIC driver to use log
authorSimon Glass <sjg@chromium.org>
Wed, 7 Sep 2022 02:26:54 +0000 (20:26 -0600)
committerTom Rini <trini@konsulko.com>
Thu, 29 Sep 2022 20:07:57 +0000 (16:07 -0400)
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>
drivers/power/pmic/sandbox.c

index d787091..acfeae2 100644 (file)
@@ -4,11 +4,14 @@
  *  Przemyslaw Marczak  <p.marczak@samsung.com>
  */
 
+#define LOG_CATEGORY   UCLASS_PMIC
+
 #include <common.h>
 #include <fdtdec.h>
 #include <errno.h>
 #include <dm.h>
 #include <i2c.h>
+#include <log.h>
 #include <power/pmic.h>
 #include <power/regulator.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)
 {
        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;
        }
 
@@ -39,7 +42,7 @@ static int sandbox_pmic_read(struct udevice *dev, uint reg,
                             uint8_t *buff, int 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;
        }
 
@@ -49,8 +52,7 @@ static int sandbox_pmic_read(struct udevice *dev, uint reg,
 static int sandbox_pmic_bind(struct udevice *dev)
 {
        if (!pmic_bind_children(dev, dev_ofnode(dev), pmic_children_info))
-               pr_err("%s:%d PMIC: %s - no child found!", __func__, __LINE__,
-                                                         dev->name);
+               log_err("PMIC: %s - no child found!\n", dev->name);
 
        /* Always return success for this device - allows for PMIC I/O */
        return 0;