Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Matti Vaittinen and committed by
Lee Jones
8c352e68 1b1c26b2

+4
+4
drivers/mfd/rohm-bd718x7.c
··· 213 213 .compatible = "rohm,bd71847", 214 214 .data = (void *)ROHM_CHIP_TYPE_BD71847, 215 215 }, 216 + { 217 + .compatible = "rohm,bd71850", 218 + .data = (void *)ROHM_CHIP_TYPE_BD71847, 219 + }, 216 220 { } 217 221 }; 218 222 MODULE_DEVICE_TABLE(of, bd718xx_of_match);