projects
/
linux
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41aea49
)
iio: accel: msa311: make use of regmap_clear_bits()
author
Trevor Gamblin
<tgamblin@baylibre.com>
Mon, 17 Jun 2024 13:49:43 +0000
(09:49 -0400)
committer
Jonathan Cameron
<Jonathan.Cameron@huawei.com>
Tue, 25 Jun 2024 20:04:44 +0000
(21:04 +0100)
Instead of using regmap_update_bits() and passing val = 0, use
regmap_clear_bits().
Suggested-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link:
https://patch.msgid.link/20240617-review-v3-3-88d1338c4cca@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/accel/msa311.c
patch
|
blob
|
history
diff --git
a/drivers/iio/accel/msa311.c
b/drivers/iio/accel/msa311.c
index b8ddbfd98f112dfd83ae0d2b1edab7f9d4f21c71..4cdbf5424a5310b604149444e5cc84a10cefeb95 100644
(file)
--- a/
drivers/iio/accel/msa311.c
+++ b/
drivers/iio/accel/msa311.c
@@
-1034,10
+1034,10
@@
static int msa311_chip_init(struct msa311_priv *msa311)
"failed to unmap map0/map1 interrupts\n");
/* Disable all axes by default */
- err = regmap_
update
_bits(msa311->regs, MSA311_ODR_REG,
-
MSA311_GENMASK(F_X_AXIS_DIS) |
-
MSA311_GENMASK(F_Y_AXIS_DIS) |
-
MSA311_GENMASK(F_Z_AXIS_DIS), 0
);
+ err = regmap_
clear
_bits(msa311->regs, MSA311_ODR_REG,
+ MSA311_GENMASK(F_X_AXIS_DIS) |
+ MSA311_GENMASK(F_Y_AXIS_DIS) |
+
MSA311_GENMASK(F_Z_AXIS_DIS)
);
if (err)
return dev_err_probe(dev, err, "can't enable all axes\n");