diff --git a/drivers/mfd/mfd_axp192.c b/drivers/mfd/mfd_axp192.c index 6683990782d3bcf..0cdaa21a26f794f 100644 --- a/drivers/mfd/mfd_axp192.c +++ b/drivers/mfd/mfd_axp192.c @@ -39,7 +39,6 @@ static int mfd_axp192_init(const struct device *dev) /* Check if axp192 chip is available */ ret = i2c_reg_read_byte_dt(&config->i2c, AXP192_REG_CHIP_ID, &chip_id); if (ret < 0) { - LOG_ERR("I2C read failed (%d)", ret); return ret; } @@ -47,7 +46,6 @@ static int mfd_axp192_init(const struct device *dev) LOG_ERR("Invalid Chip detected (%d)", chip_id); ret = -EINVAL; } - LOG_INF("Chip detected"); return ret; }