Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: gregkh@linuxfoundation.org, linux-iio@vger.kernel.org
Subject: [PULL] IIO: 1st set of fixes for the 6.12 cycle
Date: Sat, 12 Oct 2024 16:07:03 +0100	[thread overview]
Message-ID: <20241012160703.61b02c87@jic23-huawei> (raw)

The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc:

  Linux 6.12-rc1 (2024-09-29 15:06:19 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-6.12a

for you to fetch changes up to 6b8e9dbfaed471627f7b863633b9937717df1d4d:

  iio: frequency: admv4420: fix missing select REMAP_SPI in Kconfig (2024-10-10 19:27:25 +0100)

----------------------------------------------------------------
IIO: 1st set of fixes for the 6.12 cycle.

Most of this pull request is the result of Javier Carrasco doing a
careful audit for missing Kconfig dependencies that luck has meant
the random builds have never hit. The rest is the usual mix of old
bugs that have surfaced and some fallout from the recent merge window.

adi,ad5686
 - Fix binding duplication of compatible strings.
bosch,bma400
 - Fix an uninitialized variable in the event tap handling.
bosch,bmi323
 - Fix several issues in the register saving and restore on suspend/resume
sensiron,spd500
 - Fix missing CRC8 dependency
ti,op3001
 - Fix a missing full-scale range value (values above this point were
   all reported wrongly)
vishay,veml6030
 - Fix a segmentation fault due to some type confusion.
 - Fix wrong ambient light sensor resolution.

----------------------------------------------------------------
Christophe JAILLET (1):
      iio: hid-sensors: Fix an error handling path in _hid_sensor_set_report_latency()

Dan Carpenter (2):
      iio: bmi323: fix copy and paste bugs in suspend resume
      iio: bmi323: fix reversed if statement in bmi323_core_runtime_resume()

David Lechner (1):
      iio: adc: ad4695: Add missing Kconfig select

Emil Gedenryd (1):
      iio: light: opt3001: add missing full-scale range value

Javier Carrasco (24):
      iio: light: veml6030: fix IIO device retrieval from embedded device
      iio: light: veml6030: fix ALS sensor resolution
      iio: accel: kx022a: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: adc: ad7944: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: adc: ti-ads124s08: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: adc: ti-lmp92064: add missing select REGMAP_SPI in Kconfig
      iio: adc: ti-lmp92064: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: dac: ad3552r: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: dac: ad5766: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: chemical: ens160: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: light: bu27008: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: magnetometer: af8133j: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: pressure: bm1390: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: proximity: mb1232: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: resolver: ad2s1210 add missing select REGMAP in Kconfig
      iio: resolver: ad2s1210: add missing select (TRIGGERED_)BUFFER in Kconfig
      iio: frequency: adf4377: add missing select REMAP_SPI in Kconfig
      iio: amplifiers: ada4250: add missing select REGMAP_SPI in Kconfig
      iio: dac: ad5770r: add missing select REGMAP_SPI in Kconfig
      iio: dac: ltc1660: add missing select REGMAP_SPI in Kconfig
      iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in Kconfig
      iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig
      iio: frequency: {admv4420,adrf6780}: format Kconfig entries
      iio: frequency: admv4420: fix missing select REMAP_SPI in Kconfig

Jonathan Cameron (1):
      iio: pressure: sdp500: Add missing select CRC8

Mikhail Lobanov (1):
      iio: accel: bma400: Fix uninitialized variable field_value in tap event handling.

Mohammed Anees (1):
      iioc: dac: ltc2664: Fix span variable usage in ltc2664_channel_config()

Nathan Chancellor (1):
      iio: bmi323: Drop CONFIG_PM guards around runtime functions

Rob Herring (Arm) (1):
      dt-bindings: iio: dac: adi,ad56xx: Fix duplicate compatible strings

 .../devicetree/bindings/iio/dac/adi,ad5686.yaml    | 53 +++++++---------------
 .../devicetree/bindings/iio/dac/adi,ad5696.yaml    |  3 +-
 drivers/iio/accel/Kconfig                          |  2 +
 drivers/iio/accel/bma400_core.c                    |  3 +-
 drivers/iio/adc/Kconfig                            | 11 +++++
 drivers/iio/amplifiers/Kconfig                     |  1 +
 drivers/iio/chemical/Kconfig                       |  2 +
 .../iio/common/hid-sensors/hid-sensor-trigger.c    |  2 +-
 drivers/iio/dac/Kconfig                            |  7 +++
 drivers/iio/dac/ltc2664.c                          | 17 +++----
 drivers/iio/frequency/Kconfig                      | 34 +++++++-------
 drivers/iio/imu/bmi323/bmi323_core.c               | 23 +++++-----
 drivers/iio/light/Kconfig                          |  2 +
 drivers/iio/light/opt3001.c                        |  4 ++
 drivers/iio/light/veml6030.c                       |  5 +-
 drivers/iio/magnetometer/Kconfig                   |  2 +
 drivers/iio/pressure/Kconfig                       |  4 ++
 drivers/iio/proximity/Kconfig                      |  2 +
 drivers/iio/resolver/Kconfig                       |  3 ++
 19 files changed, 102 insertions(+), 78 deletions(-)

             reply	other threads:[~2024-10-12 15:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-12 15:07 Jonathan Cameron [this message]
2024-10-13 15:25 ` [PULL] IIO: 1st set of fixes for the 6.12 cycle Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241012160703.61b02c87@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-iio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox