diff options
author | Keerthy <j-keerthy@ti.com> | 2019-05-15 15:38:47 +0530 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-06-17 08:00:24 +0100 |
commit | 013e868bc9465452c7b667830712ab57de236d08 (patch) | |
tree | b7750a17688244744f79d89453b10657571f73d2 /drivers/mfd/lp87565.c | |
parent | c88dd606a1cd9edeb6bb7e6f6a45e1248c3a6453 (diff) | |
download | blackbird-op-linux-013e868bc9465452c7b667830712ab57de236d08.tar.gz blackbird-op-linux-013e868bc9465452c7b667830712ab57de236d08.zip |
mfd: lp87565: Add support for 4-phase LP87561 combination
Add support for 4-phase LP87561 combination.
Data Sheet: https://www.ti.com/lit/ds/symlink/lp87561-q1.pdf
Signed-off-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/lp87565.c')
-rw-r--r-- | drivers/mfd/lp87565.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mfd/lp87565.c b/drivers/mfd/lp87565.c index 32d2a07d4354..8ad688fe75f9 100644 --- a/drivers/mfd/lp87565.c +++ b/drivers/mfd/lp87565.c @@ -33,6 +33,10 @@ static const struct of_device_id of_lp87565_match_table[] = { .compatible = "ti,lp87565-q1", .data = (void *)LP87565_DEVICE_TYPE_LP87565_Q1, }, + { + .compatible = "ti,lp87561-q1", + .data = (void *)LP87565_DEVICE_TYPE_LP87561_Q1, + }, {} }; MODULE_DEVICE_TABLE(of, of_lp87565_match_table); |