diff options
author | Pierre-Hugues Husson <phh@phh.me> | 2016-11-05 19:19:24 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-11-29 11:21:35 +0300 |
commit | c5e589a171728c9f5c587f9254ec6b343153c2ce (patch) | |
tree | 179efe36d56ff8243e243a8535e69da3553ae3ea /drivers/mfd/rn5t618.c | |
parent | 34d9030b5d06ec0072796b3ab6a3fa24e53ece3d (diff) | |
download | linux-c5e589a171728c9f5c587f9254ec6b343153c2ce.tar.xz |
mfd: rn5t618: Add Ricoh RC5T619 PMIC support
The Ricoh RN5T567 is from the same family as the Ricoh RN5T618 is,
the differences are:
+ DCDC4/DCDC5
+ LDO7-10
+ Slightly different output voltage/currents
+ 32kHz Output
+ RTC
+ USB Charger detection
Signed-off-by: Pierre-Hugues Husson <phh@phh.me>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/rn5t618.c')
-rw-r--r-- | drivers/mfd/rn5t618.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/rn5t618.c b/drivers/mfd/rn5t618.c index ee94080e1cbb..8131d1975745 100644 --- a/drivers/mfd/rn5t618.c +++ b/drivers/mfd/rn5t618.c @@ -87,6 +87,7 @@ static int rn5t618_restart(struct notifier_block *this, static const struct of_device_id rn5t618_of_match[] = { { .compatible = "ricoh,rn5t567", .data = (void *)RN5T567 }, { .compatible = "ricoh,rn5t618", .data = (void *)RN5T618 }, + { .compatible = "ricoh,rc5t619", .data = (void *)RC5T619 }, { } }; MODULE_DEVICE_TABLE(of, rn5t618_of_match); |