public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Char/Misc driver fixes for 6.15-rc6
@ 2025-05-10 13:52 Greg KH
  2025-05-10 16:29 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Greg KH @ 2025-05-10 13:52 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, Arnd Bergmann, linux-kernel

The following changes since commit b4432656b36e5cc1d50a1f2dc15357543add530e:

  Linux 6.15-rc4 (2025-04-27 15:19:23 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git tags/char-misc-6.15-rc6

for you to fetch changes up to 65995e97a1caacf0024bebda3332b8d1f0f443c4:

  Drivers: hv: Make the sysfs node size for the ring buffer dynamic (2025-05-02 13:59:02 +0200)

----------------------------------------------------------------
Char/Misc/IIO driver fixes for 6.15-rc6

Here are a bunch of small driver fixes (mostly all IIO) for 6.15-rc6.
Included in here are:
  - loads of tiny IIO driver fixes for reported issues
  - hyperv driver fix for a much-reported and worked on sysfs ring
    buffer creation bug

All of these have been in linux-next for over a week (the IIO ones for
many weeks now), with no reported issues.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

----------------------------------------------------------------
Angelo Dureghello (1):
      iio: adc: ad7606: fix serial register access

David Lechner (8):
      iio: adc: ad7380: disable offload before using SPI bus
      iio: adc: ad7606: check for NULL before calling sw_mode_config()
      iio: adc: ad7380: fix event threshold shift
      iio: imu: inv_mpu6050: align buffer for timestamp
      iio: chemical: sps30: use aligned_s64 for timestamp
      iio: chemical: pms7003: use aligned_s64 for timestamp
      iio: imu: adis16550: align buffers for timestamp
      iio: pressure: mprls0025pa: use aligned_s64 for timestamp

Gabriel Shahrouzi (2):
      staging: iio: adc: ad7816: Correct conditional logic for store mode
      iio: adis16201: Correct inclinometer channel resolution

Greg Kroah-Hartman (1):
      Merge tag 'iio-fixes-for-6.15a' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/jic23/iio into char-misc-linus

Gustavo Silva (1):
      iio: imu: bmi270: fix initial sampling frequency configuration

Jonathan Cameron (5):
      iio: temp: maxim-thermocouple: Fix potential lack of DMA safe buffer.
      iio: accel: adxl355: Make timestamp 64-bit aligned using aligned_s64
      iio: adc: dln2: Use aligned_s64 for timestamp
      iio: adc: ad7768-1: Fix insufficient alignment of timestamp.
      iio: adc: ad7266: Fix potential timestamp alignment issue.

Krzysztof Kozlowski (3):
      iio: accel: fxls8962af: Fix wakeup source leaks on device unbind
      iio: adc: qcom-spmi-iadc: Fix wakeup source leaks on device unbind
      iio: imu: st_lsm6dsx: Fix wakeup source leaks on device unbind

Lothar Rubusch (1):
      iio: accel: adxl367: fix setting odr for activity time update

Luca Ceresoli (1):
      iio: light: opt3001: fix deadlock due to concurrent flag access

Naman Jain (2):
      uio_hv_generic: Fix sysfs creation path for ring buffer
      Drivers: hv: Make the sysfs node size for the ring buffer dynamic

Silvano Seva (2):
      iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_fifo
      iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_tagged_fifo

Simon Xue (1):
      iio: adc: rockchip: Fix clock initialization sequence

Zhang Lixu (3):
      iio: hid-sensor-prox: Restore lost scale assignments
      iio: hid-sensor-prox: support multi-channel SCALE calculation
      iio: hid-sensor-prox: Fix incorrect OFFSET calculation

 drivers/hv/hyperv_vmbus.h                          |   6 ++
 drivers/hv/vmbus_drv.c                             | 109 ++++++++++++++++++++-
 drivers/iio/accel/adis16201.c                      |   4 +-
 drivers/iio/accel/adxl355_core.c                   |   2 +-
 drivers/iio/accel/adxl367.c                        |  10 +-
 drivers/iio/accel/fxls8962af-core.c                |   7 +-
 drivers/iio/adc/ad7266.c                           |   2 +-
 drivers/iio/adc/ad7380.c                           |  32 ++++--
 drivers/iio/adc/ad7606.c                           |  11 ++-
 drivers/iio/adc/ad7606_spi.c                       |   2 +-
 drivers/iio/adc/ad7768-1.c                         |   2 +-
 drivers/iio/adc/dln2-adc.c                         |   2 +-
 drivers/iio/adc/qcom-spmi-iadc.c                   |   4 +-
 drivers/iio/adc/rockchip_saradc.c                  |  17 ++--
 drivers/iio/chemical/pms7003.c                     |   5 +-
 drivers/iio/chemical/sps30.c                       |   2 +-
 .../iio/common/hid-sensors/hid-sensor-attributes.c |   4 +
 drivers/iio/imu/adis16550.c                        |   2 +-
 drivers/iio/imu/bmi270/bmi270_core.c               |   6 +-
 drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c         |   2 +-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c     |   6 ++
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c       |   7 +-
 drivers/iio/light/hid-sensor-prox.c                |  22 +++--
 drivers/iio/light/opt3001.c                        |   5 +-
 drivers/iio/pressure/mprls0025pa.h                 |  17 ++--
 drivers/iio/temperature/maxim_thermocouple.c       |   2 +-
 drivers/staging/iio/adc/ad7816.c                   |   2 +-
 drivers/uio/uio_hv_generic.c                       |  39 ++++----
 include/linux/hyperv.h                             |   6 ++
 29 files changed, 241 insertions(+), 96 deletions(-)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-05-10 16:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-10 13:52 [GIT PULL] Char/Misc driver fixes for 6.15-rc6 Greg KH
2025-05-10 16:29 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox