diff options
author | David Frey <dpfrey@gmail.com> | 2018-09-01 18:50:41 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-09-07 14:03:55 +0200 |
commit | 1c96a2f67cd9b617b013f0a7580d76aae7dcd0d7 (patch) | |
tree | 3face74ddb493620322aade5c20d721826e38486 /drivers/mfd/da9052-spi.c | |
parent | regmap: fix comment for regmap.use_single_write (diff) | |
download | linux-1c96a2f67cd9b617b013f0a7580d76aae7dcd0d7.tar.xz linux-1c96a2f67cd9b617b013f0a7580d76aae7dcd0d7.zip |
regmap: split up regmap_config.use_single_rw
Split regmap_config.use_single_rw into use_single_read and
use_single_write. This change enables drivers of devices which only
support bulk operations in one direction to use the regmap_bulk_*()
functions for both directions and have their bulk operation split into
single operations only when necessary.
Update all struct regmap_config instances where use_single_rw==true to
instead set both use_single_read and use_single_write. No attempt was
made to evaluate whether it is possible to set only one of
use_single_read or use_single_write.
Signed-off-by: David Frey <dpfrey@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/mfd/da9052-spi.c')
-rw-r--r-- | drivers/mfd/da9052-spi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mfd/da9052-spi.c b/drivers/mfd/da9052-spi.c index abfb11818fdc..fdae1288bc6d 100644 --- a/drivers/mfd/da9052-spi.c +++ b/drivers/mfd/da9052-spi.c @@ -46,7 +46,8 @@ static int da9052_spi_probe(struct spi_device *spi) config.reg_bits = 7; config.pad_bits = 1; config.val_bits = 8; - config.use_single_rw = 1; + config.use_single_read = true; + config.use_single_write = true; da9052->regmap = devm_regmap_init_spi(spi, &config); if (IS_ERR(da9052->regmap)) { |