[PATCH v2 2/5] pmic: pfuze100: Change error message level to debug
Heiko Schocher
hs at denx.de
Fri Apr 17 16:51:28 CEST 2020
Hello Fabio,
Am 17.04.2020 um 14:27 schrieb Fabio Estevam:
> In some cases U-Boot runs the same binary on different board versions.
>
> In wandboard, for example, there are versions with the PFUZE100 PMIC
> populated and others without it.
>
> When the PMIC is not present, it is not really useful to get PMIC error,
> so change the error message level to debug instead.
>
> Signed-off-by: Fabio Estevam <festevam at gmail.com>
> ---
> Changes since v1:
> - Reworded the commit log for clarity
>
> drivers/power/pmic/pfuze100.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Tested-by: Heiko Schocher <hs at denx.de>
Thanks!
bye,
Heiko
>
> diff --git a/drivers/power/pmic/pfuze100.c b/drivers/power/pmic/pfuze100.c
> index 6cf5f35f0f..db630f3ad0 100644
> --- a/drivers/power/pmic/pfuze100.c
> +++ b/drivers/power/pmic/pfuze100.c
> @@ -41,7 +41,7 @@ static int pfuze100_write(struct udevice *dev, uint reg, const uint8_t *buff,
> static int pfuze100_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);
> + debug("read error from device: %p register: %#x!\n", dev, reg);
> return -EIO;
> }
>
>
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs at denx.de
More information about the U-Boot
mailing list