On 4/12/22 04:45, Marek Vasut wrote: > The upstream DT regulators node subnodes are named BUCKn and LDOn, > the downstream DT regulators node subnodes are named buckn and ldon, > add the upstream match. > > Reviewed-by: Fabio Estevam <[email protected]> > Signed-off-by: Marek Vasut <[email protected]> > Cc: Fabio Estevam <[email protected]> > Cc: Peng Fan <[email protected]> > Cc: Stefano Babic <[email protected]>
Reviewed-by: Jaehoon Chung <[email protected]> Best Regards, Jaehoon Chung > --- > V2: Add RB by Fabio > --- > drivers/power/pmic/pca9450.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/power/pmic/pca9450.c b/drivers/power/pmic/pca9450.c > index 2394b196c56..26c876c9c45 100644 > --- a/drivers/power/pmic/pca9450.c > +++ b/drivers/power/pmic/pca9450.c > @@ -19,8 +19,10 @@ DECLARE_GLOBAL_DATA_PTR; > static const struct pmic_child_info pmic_children_info[] = { > /* buck */ > { .prefix = "b", .driver = PCA9450_REGULATOR_DRIVER}, > + { .prefix = "B", .driver = PCA9450_REGULATOR_DRIVER}, > /* ldo */ > { .prefix = "l", .driver = PCA9450_REGULATOR_DRIVER}, > + { .prefix = "L", .driver = PCA9450_REGULATOR_DRIVER}, > { }, > }; >

