* [PULL] IIO: 1st set of fixes for the 6.12 cycle
@ 2024-10-12 15:07 Jonathan Cameron
2024-10-13 15:25 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Jonathan Cameron @ 2024-10-12 15:07 UTC (permalink / raw)
To: gregkh, linux-iio
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(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PULL] IIO: 1st set of fixes for the 6.12 cycle
2024-10-12 15:07 [PULL] IIO: 1st set of fixes for the 6.12 cycle Jonathan Cameron
@ 2024-10-13 15:25 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2024-10-13 15:25 UTC (permalink / raw)
To: Jonathan Cameron; +Cc: linux-iio
On Sat, Oct 12, 2024 at 04:07:03PM +0100, Jonathan Cameron wrote:
> 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
Pulled and pushed out, thanks.
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-10-13 15:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-12 15:07 [PULL] IIO: 1st set of fixes for the 6.12 cycle Jonathan Cameron
2024-10-13 15:25 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).