summaryrefslogtreecommitdiffstats
path: root/include/power
diff options
context:
space:
mode:
authorSébastien Szymanski <sebastien.szymanski@armadeus.com>2020-06-30 15:03:13 +0200
committerStefano Babic <sbabic@denx.de>2020-07-16 11:20:14 +0200
commiteefd93e7f88ec919cc335dbf934320fec949bce6 (patch)
tree82251722842a82e7fe3e2e557cb961b27a33da97 /include/power
parent90865614b4e6243a100cde69ef08e9b55e4fa5fc (diff)
downloadu-boot-eefd93e7f88ec919cc335dbf934320fec949bce6.tar.gz
u-boot-eefd93e7f88ec919cc335dbf934320fec949bce6.tar.xz
u-boot-eefd93e7f88ec919cc335dbf934320fec949bce6.zip
power: pmic_pca9450: fix PCA9450A I2C address
Quoting Ye Li from NXP: "We have confirmed with PMIC team, 0x35 is used only on early chips and not used any more. 0x25 is the final address." Fix it by merging power_pca9450a_init and power_pca9450b_init into one function power_pca9450_init. Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> Reviewed-by: Fabio Estevam <festevam@gmail.com> Reviewed-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'include/power')
-rw-r--r--include/power/pca9450.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/power/pca9450.h b/include/power/pca9450.h
index 5d4f58ca44..5a9a697d62 100644
--- a/include/power/pca9450.h
+++ b/include/power/pca9450.h
@@ -54,7 +54,6 @@ enum {
PCA9450_REG_NUM,
};
-int power_pca9450a_init(unsigned char bus);
-int power_pca9450b_init(unsigned char bus);
+int power_pca9450_init(unsigned char bus);
#endif