diff options
| author | Henrik Grimler <[email protected]> | 2025-08-22 20:33:29 +0200 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2025-09-01 10:33:07 +0800 |
| commit | 920404409cf1bb7644199b4194bf137fc62cff82 (patch) | |
| tree | 2ad42e2ce0f03aba5c1ffe179214d2ffcc8b5842 /drivers | |
| parent | 0fdd3b4243359fd81d11923b711c28230795cc54 (diff) | |
power: pmic: max8997: support maxim,max8997-pmic compatible as well
Linux's DTSes uses maxim,max8997-pmic, so check for this compatible
as well so that max8997 pmic driver can support both u-boot and
Linux's DTSes.
Signed-off-by: Henrik Grimler <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/power/pmic/max8997.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/pmic/max8997.c b/drivers/power/pmic/max8997.c index 4afa6c84ef8..ecdad505b26 100644 --- a/drivers/power/pmic/max8997.c +++ b/drivers/power/pmic/max8997.c @@ -47,6 +47,7 @@ static struct dm_pmic_ops max8997_ops = { static const struct udevice_id max8997_ids[] = { { .compatible = "maxim,max8997" }, + { .compatible = "maxim,max8997-pmic" }, { }, }; |
