From: Max Krummenacher Date: Wed, 28 Oct 2020 09:58:09 +0000 (+0200) Subject: pca9450a: fix i2c address X-Git-Tag: v2021.10~410^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5d89afe27f3872a526db7e6e5614ba3b9093e46b;p=platform%2Fkernel%2Fu-boot.git pca9450a: fix i2c address The I2C address is 0x25, not 0x35. This according to the datasheet and tests with a PCA9450A. Signed-off-by: Max Krummenacher Reviewed-by: Jaehoon Chung --- diff --git a/drivers/power/pmic/pca9450.c b/drivers/power/pmic/pca9450.c index 0c9d9a3..c7f8b80 100644 --- a/drivers/power/pmic/pca9450.c +++ b/drivers/power/pmic/pca9450.c @@ -80,7 +80,7 @@ static struct dm_pmic_ops pca9450_ops = { }; static const struct udevice_id pca9450_ids[] = { - { .compatible = "nxp,pca9450a", .data = 0x35, }, + { .compatible = "nxp,pca9450a", .data = 0x25, }, { .compatible = "nxp,pca9450b", .data = 0x25, }, { } };