From: Adam Ford Date: Mon, 20 Aug 2018 01:54:00 +0000 (-0500) Subject: regulator: pbias: Add additional compatible flags X-Git-Tag: v2018.11-rc1~141 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e5f7a261db470e97f2018cdff41407af6353d969;p=oweals%2Fu-boot.git 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 --- 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" }, { } };