summaryrefslogtreecommitdiff
path: root/drivers/power
diff options
context:
space:
mode:
authorAdam Ford <aford173@gmail.com>2018-08-19 20:54:00 -0500
committerTom Rini <trini@konsulko.com>2018-09-11 21:38:37 -0400
commite5f7a261db470e97f2018cdff41407af6353d969 (patch)
tree385891ff34205461039fb35ea90828425883d086 /drivers/power
parent535f46dad920094df12b2d19f071db2e6a8ae0ab (diff)
regulator: pbias: Add additional compatible flags
The driver was developed with references for more than just dra7, but never included. At least for omap3, this appears to be functional. Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/regulator/pbias_regulator.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/power/regulator/pbias_regulator.c b/drivers/power/regulator/pbias_regulator.c
index 8f06e27b89..366f97b38b 100644
--- a/drivers/power/regulator/pbias_regulator.c
+++ b/drivers/power/regulator/pbias_regulator.c
@@ -108,6 +108,10 @@ static struct dm_pmic_ops pbias_ops = {
static const struct udevice_id pbias_ids[] = {
{ .compatible = "ti,pbias-dra7" },
+ { .compatible = "ti,pbias-omap2" },
+ { .compatible = "ti,pbias-omap3" },
+ { .compatible = "ti,pbias-omap4" },
+ { .compatible = "ti,pbias-omap5" },
{ }
};