diff options
| author | Marek Vasut <[email protected]> | 2022-05-20 05:10:16 +0200 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2022-05-20 12:36:48 +0200 |
| commit | 1d51e779e3f93af75516ddffd71323a503ba9fbf (patch) | |
| tree | 5eced72282297c54d1747d0875cd873ca2b1d38b /drivers | |
| parent | fbc6b1414342910550728b82fda0e47af4833463 (diff) | |
pmic: pca9450: Add upstream regulators subnode match
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]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/power/pmic/pca9450.c | 2 |
1 files changed, 2 insertions, 0 deletions
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}, { }, }; |
