From: Greg KH <gregkh@linuxfoundation.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Arnd Bergmann <arnd@arndb.de>,
linux-kernel@vger.kernel.org
Subject: [GIT PULL] Char/Misc driver fixes for 6.15-rc6
Date: Sat, 10 May 2025 15:52:52 +0200 [thread overview]
Message-ID: <aB9aNLzpdHsXMfBU@kroah.com> (raw)
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(-)
next reply other threads:[~2025-05-10 13:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-10 13:52 Greg KH [this message]
2025-05-10 16:29 ` [GIT PULL] Char/Misc driver fixes for 6.15-rc6 pr-tracker-bot
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=aB9aNLzpdHsXMfBU@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.