mbox series

[v5,00/10] iio: adc: ad7124: Various fixes

Message ID 20241203110019.1520071-12-u.kleine-koenig@baylibre.com (mailing list archive)
Headers show
Series iio: adc: ad7124: Various fixes | expand

Message

Uwe Kleine-König Dec. 3, 2024, 11 a.m. UTC
Hello,

changes since v4, https://lore.kernel.org/linux-iio/20241127145929.679408-12-u.kleine-koenig@baylibre.com

 - Drop | after description in the binding docs (Rob in v2)
 - Dynamically allocate spi buffer (Jonathan)
 - Fix capitalisation of a comment (Jonathan)
 - drop comments about already emitted error messages (Jonathan)

As before this is based on v6.12 + 64612ec9b909 ("iio: adc:
ad7124: Disable all channels at probe time").

Best regards
Uwe

Uwe Kleine-König (10):
  iio: adc: ad7124: Don't create more channels than the driver can handle
  iio: adc: ad7124: Refuse invalid input specifiers
  dt-bindings: iio: adc: adi,ad7{124,173,192,780}: Allow specifications of a gpio for irq line
  iio: adc: ad_sigma_delta: Add support for reading irq status using a GPIO
  iio: adc: ad_sigma_delta: Handle CS assertion as intended in ad_sd_read_reg_raw()
  iio: adc: ad_sigma_delta: Fix a race condition
  iio: adc: ad_sigma_delta: Store information about reset sequence length
  iio: adc: ad_sigma_delta: Check for previous ready signals
  iio: adc: ad7124: Add error reporting during probe
  iio: adc: ad7124: Implement temperature measurement

 .../bindings/iio/adc/adi,ad7124.yaml          |  13 ++
 .../bindings/iio/adc/adi,ad7173.yaml          |  12 +
 .../bindings/iio/adc/adi,ad7192.yaml          |  15 ++
 .../bindings/iio/adc/adi,ad7780.yaml          |  11 +
 drivers/iio/adc/ad7124.c                      | 217 +++++++++++++-----
 drivers/iio/adc/ad7173.c                      |   1 +
 drivers/iio/adc/ad7192.c                      |   4 +-
 drivers/iio/adc/ad7791.c                      |   1 +
 drivers/iio/adc/ad7793.c                      |   3 +-
 drivers/iio/adc/ad_sigma_delta.c              | 190 ++++++++++++---
 include/linux/iio/adc/ad_sigma_delta.h        |   8 +-
 11 files changed, 387 insertions(+), 88 deletions(-)


base-commit: adc218676eef25575469234709c2d87185ca223a
prerequisite-patch-id: 617af17fc377a984762c61893b9f2a92ae62213a

Comments

Uwe Kleine-König Dec. 5, 2024, 6:31 p.m. UTC | #1
Hello,

On Tue, Dec 03, 2024 at 12:00:20PM +0100, Uwe Kleine-König wrote:
> changes since v4, https://lore.kernel.org/linux-iio/20241127145929.679408-12-u.kleine-koenig@baylibre.com
> 
>  - Drop | after description in the binding docs (Rob in v2)
>  - Dynamically allocate spi buffer (Jonathan)
>  - Fix capitalisation of a comment (Jonathan)
>  - drop comments about already emitted error messages (Jonathan)
> 
> As before this is based on v6.12 + 64612ec9b909 ("iio: adc:
> ad7124: Disable all channels at probe time").

In case you intended to apply this despite Andy's concern: Please don't,
I found a bug in one of the patches. Will send a fixed series tomorrow.

Best regards
Uwe