diff options
author | Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com> | 2020-01-20 16:43:01 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2020-01-24 10:22:31 +0300 |
commit | 8c352e68dd2e50570afe6177d57484366a1cb615 (patch) | |
tree | 7074382f5d1939452ff5856147946f7ac2e5ff62 /drivers/mfd/rohm-bd718x7.c | |
parent | 1b1c26b24a6e75d96967515e55fba6c9954d4009 (diff) | |
download | linux-8c352e68dd2e50570afe6177d57484366a1cb615.tar.xz |
mfd: bd718x7: Add compatible for BD71850
ROHM BD71850 PMIC is almost identical to BD71847. Main difference is some
initial voltage values for regulators. The BD71850 can be handled by
BD71847 driver but adding own compatible makes it clearer for one who
creates the DT for board containing this PMIC and allows SW to be
differentiating PMICs if needed.
Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/rohm-bd718x7.c')
-rw-r--r-- | drivers/mfd/rohm-bd718x7.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mfd/rohm-bd718x7.c b/drivers/mfd/rohm-bd718x7.c index bb86ec829079..c32c1b6c98fa 100644 --- a/drivers/mfd/rohm-bd718x7.c +++ b/drivers/mfd/rohm-bd718x7.c @@ -213,6 +213,10 @@ static const struct of_device_id bd718xx_of_match[] = { .compatible = "rohm,bd71847", .data = (void *)ROHM_CHIP_TYPE_BD71847, }, + { + .compatible = "rohm,bd71850", + .data = (void *)ROHM_CHIP_TYPE_BD71847, + }, { } }; MODULE_DEVICE_TABLE(of, bd718xx_of_match); |