regulator: pbias: Add additional compatible flags
authorAdam Ford <aford173@gmail.com>
Mon, 20 Aug 2018 01:54:00 +0000 (20:54 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 12 Sep 2018 01:38:37 +0000 (21:38 -0400)
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>
drivers/power/regulator/pbias_regulator.c

index 8f06e27..366f97b 100644 (file)
@@ -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" },
        { }
 };