aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Gamblin <[email protected]>2024-06-17 09:49:46 -0400
committerJonathan Cameron <[email protected]>2024-06-25 21:04:44 +0100
commit6e195872020b8a34d713db91bb9a9bd4fc7a2ead (patch)
tree7822e83e8aa3f9e83d805ff9db15e472c806d412
parent4796fed269f87d0ee5ca8558710bd467fdaf75fb (diff)
iio: adc: axp288_adc: make use of regmap_set_bits()
Instead of using regmap_update_bits() and passing the mask twice, use regmap_set_bits(). Suggested-by: Uwe Kleine-König <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]> Acked-by: Uwe Kleine-König <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jonathan Cameron <[email protected]>
-rw-r--r--drivers/iio/adc/axp288_adc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/adc/axp288_adc.c b/drivers/iio/adc/axp288_adc.c
index 49fff1cabd0d..f135cf2362df 100644
--- a/drivers/iio/adc/axp288_adc.c
+++ b/drivers/iio/adc/axp288_adc.c
@@ -247,8 +247,8 @@ static int axp288_adc_initialize(struct axp288_adc_info *info)
return ret;
/* Turn on the ADC for all channels except TS, leave TS as is */
- return regmap_update_bits(info->regmap, AXP20X_ADC_EN1,
- AXP288_ADC_EN_MASK, AXP288_ADC_EN_MASK);
+ return regmap_set_bits(info->regmap, AXP20X_ADC_EN1,
+ AXP288_ADC_EN_MASK);
}
static const struct iio_info axp288_adc_iio_info = {