From: Trevor Gamblin Date: Mon, 17 Jun 2024 13:50:06 +0000 (-0400) Subject: iio: health: max30102: make use of regmap_set_bits() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=513735883335a6435bf04a1c62330139496513c1;p=users%2Fjedix%2Flinux-maple.git iio: health: max30102: 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 Signed-off-by: Trevor Gamblin Acked-by: Uwe Kleine-König Link: https://patch.msgid.link/20240617-review-v3-26-88d1338c4cca@baylibre.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/health/max30102.c b/drivers/iio/health/max30102.c index 6616729af5b77..07a343e35a818 100644 --- a/drivers/iio/health/max30102.c +++ b/drivers/iio/health/max30102.c @@ -448,9 +448,8 @@ static int max30102_get_temp(struct max30102_data *data, int *val, bool en) } /* start acquisition */ - ret = regmap_update_bits(data->regmap, MAX30102_REG_TEMP_CONFIG, - MAX30102_REG_TEMP_CONFIG_TEMP_EN, - MAX30102_REG_TEMP_CONFIG_TEMP_EN); + ret = regmap_set_bits(data->regmap, MAX30102_REG_TEMP_CONFIG, + MAX30102_REG_TEMP_CONFIG_TEMP_EN); if (ret) goto out;