projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1678d4a
)
iio: pressure: ms5611: changed hardcoded SPI speed to value limited
author
Mitja Spes
<mitja@lxnav.com>
Fri, 21 Oct 2022 13:58:21 +0000
(15:58 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 26 Nov 2022 08:24:46 +0000
(09:24 +0100)
commit
741cec30cc52058d1c10d415f3b98319887e4f73
upstream.
Don't hardcode the ms5611 SPI speed, limit it instead.
Signed-off-by: Mitja Spes <mitja@lxnav.com>
Fixes: c0644160a8b5 ("iio: pressure: add support for MS5611 pressure and temperature sensor")
Link:
https://lore.kernel.org/r/20221021135827.1444793-3-mitja@lxnav.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/iio/pressure/ms5611_spi.c
patch
|
blob
|
history
diff --git
a/drivers/iio/pressure/ms5611_spi.c
b/drivers/iio/pressure/ms5611_spi.c
index 45d3a7d5be8e4e637b7acc9c563c1ede7b22e43f..f7743ee3318f84512163d2a96f66b4ae0d827af0 100644
(file)
--- a/
drivers/iio/pressure/ms5611_spi.c
+++ b/
drivers/iio/pressure/ms5611_spi.c
@@
-94,7
+94,7
@@
static int ms5611_spi_probe(struct spi_device *spi)
spi_set_drvdata(spi, indio_dev);
spi->mode = SPI_MODE_0;
- spi->max_speed_hz =
20000000
;
+ spi->max_speed_hz =
min(spi->max_speed_hz, 20000000U)
;
spi->bits_per_word = 8;
ret = spi_setup(spi);
if (ret < 0)