From: Marek Vasut Date: Sat, 26 Feb 2022 03:37:08 +0000 (+0100) Subject: pmic: pca9450: Add PCA9450C compatible string X-Git-Tag: v2022.07~104^2~116 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0044538c8c7c1d4cd46f178335e4f37bec307bf;p=platform%2Fkernel%2Fu-boot.git pmic: pca9450: Add PCA9450C compatible string Add DT compatible string for PCA9450C PMIC. This is a variant of the PCA9450 PMIC with 6 A dual-phase buck regulator and 3 A buck regulator, and is software-wise compatible with the PCA9450B. This variant of the PCA9450 is designed for use as companion PMIC for i.MX8MP. Signed-off-by: Marek Vasut Cc: Fabio Estevam Cc: Peng Fan Cc: Stefano Babic Reviewed-by: Fabio Estevam Reviewed-by: Jaehoon Chung --- diff --git a/drivers/power/pmic/pca9450.c b/drivers/power/pmic/pca9450.c index a886647..2394b19 100644 --- a/drivers/power/pmic/pca9450.c +++ b/drivers/power/pmic/pca9450.c @@ -83,6 +83,7 @@ static struct dm_pmic_ops pca9450_ops = { static const struct udevice_id pca9450_ids[] = { { .compatible = "nxp,pca9450a", .data = 0x25, }, { .compatible = "nxp,pca9450b", .data = 0x25, }, + { .compatible = "nxp,pca9450c", .data = 0x25, }, { } };