diff options
author | Thierry Reding <treding@nvidia.com> | 2020-04-17 20:09:13 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2020-05-26 12:51:21 +0300 |
commit | 12e5bf757a1fd03c5d736942428732be641daa1c (patch) | |
tree | c557bd706a00e7a45dd05db1ce396388fa32461f /drivers/mfd/max77620.c | |
parent | 652b7b6740eb52d98377a881c7730e36997f00ab (diff) | |
download | linux-12e5bf757a1fd03c5d736942428732be641daa1c.tar.xz |
mfd: max77620: Use single-byte writes on MAX77620
The MAX77620 doesn't support bulk writes, so make sure the regmap code
breaks bulk writes into multiple single-byte writes.
Note that this is mostly cosmetic because currently only the RTC sub-
driver uses bulk writes and the RTC driver ends up using a different
regmap on the MAX77620 anyway. However, it seems like a good idea to
make this change now in order to avoid running into issues if bulk
writes are ever used by other sub-drivers sometime down the road.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/max77620.c')
-rw-r--r-- | drivers/mfd/max77620.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/max77620.c b/drivers/mfd/max77620.c index c7ed5c353553..fec2096474ad 100644 --- a/drivers/mfd/max77620.c +++ b/drivers/mfd/max77620.c @@ -177,6 +177,7 @@ static const struct regmap_config max77620_regmap_config = { .rd_table = &max77620_readable_table, .wr_table = &max77620_writable_table, .volatile_table = &max77620_volatile_table, + .use_single_write = true, }; static const struct regmap_config max20024_regmap_config = { |