The following changes since commit d76308f03ee1574b0deffde45604252a51c77f6d: Revert "coresight: cti: Fix hang in cti_disable_hw()" (2022-10-24 08:33:45 +0200) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-6.1b for you to fetch changes up to 7c919b619bcc68158921b1bd968f0e704549bbb6: tools: iio: iio_generic_buffer: Fix read size (2022-11-01 08:48:13 +0000) ---------------------------------------------------------------- 2nd set of IIO fixes for 6.1 Another mixed bag of driver fixes. * atmel,at91-sama5d2 - Drop a 5 degree offset as not needed for production devices. - Missing iio_trigger_free() in error path. * bosch,bma400 - Turn power on before trying to read chip ID. * bosch,bno055 - Avoid uninitialized variable warning (no actual impact) * meas,ms5611 - Fix multiple instances of driver sharing single prom array. - Stop forcing SPI speed to max devices supports * mps,mp2629 - Wrong structure field used to match channel. - Missing NULL terminator. * sysfs-trigger - Fix memory leak in error path. * tools - Fix wrong read size when calling with noevents. ---------------------------------------------------------------- Claudiu Beznea (1): iio: adc: at91-sama5d2_adc: get rid of 5 degrees Celsius adjustment Dan Carpenter (1): iio: imu: bno055: uninitialized variable bug in bno055_trigger_handler() Jonathan Cameron (1): iio: accel: bma400: Ensure VDDIO is enable defore reading the chip ID. Matti Vaittinen (1): tools: iio: iio_generic_buffer: Fix read size Mitja Spes (2): iio: pressure: ms5611: fixed value compensation bug iio: pressure: ms5611: changed hardcoded SPI speed to value limited Saravanan Sekar (2): iio: adc: mp2629: fix wrong comparison of channel iio: adc: mp2629: fix potential array out of bound access Yang Yingliang (2): iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() drivers/iio/accel/bma400_core.c | 24 ++++++++--------- drivers/iio/adc/at91-sama5d2_adc.c | 6 ++--- drivers/iio/adc/at91_adc.c | 4 ++- drivers/iio/adc/mp2629_adc.c | 5 ++-- drivers/iio/imu/bno055/bno055.c | 2 +- drivers/iio/pressure/ms5611.h | 12 +++------ drivers/iio/pressure/ms5611_core.c | 51 +++++++++++++++++++----------------- drivers/iio/pressure/ms5611_spi.c | 2 +- drivers/iio/trigger/iio-trig-sysfs.c | 6 ++++- tools/iio/iio_generic_buffer.c | 4 +-- 10 files changed, 60 insertions(+), 56 deletions(-)