mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
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.10-rc4
Date: Sun, 16 Jun 2024 12:50:42 +0200	[thread overview]
Message-ID: <Zm7DgsGWt90hFznF@kroah.com> (raw)

The following changes since commit c3f38fa61af77b49866b006939479069cd451173:

  Linux 6.10-rc2 (2024-06-02 15:44:56 -0700)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git tags/char-misc-6.10-rc4

for you to fetch changes up to 7da9dfdd5a3dbfd3d2450d9c6a3d1d699d625c43:

  .editorconfig: remove trim_trailing_whitespace option (2024-06-13 16:47:52 +0200)

----------------------------------------------------------------
Char/Misc driver fixes for 6.10-rc4

Here are a number of small char/misc and iio driver fixes for 6.10-rc4.
Included in here are the following:
  - iio driver fixes for a bunch of reported problems.
  - mei driver fixes for a number of reported issues.
  - amiga parport driver build fix.
  - .editorconfig fix that was causing lots of unintended whitespace
    changes to happen to files when they were being edited.  Unless we
    want to sweep the whole tree and remove all trailing whitespace at
    once, this is needed for the .editorconfig file to be able to be
    used at all.  This change is required because the original
    submitters never touched older files in the tree.
  - jfs bugfix for a buffer overflow

The jfs bugfix is in here as I didn't know where else to put it, and
it's been ignored for a while as the filesystem seems to be abandoned
and I'm tired of seeing the same issue reported in multiple places.

All of these have been in linux-next with no reported issues.

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

----------------------------------------------------------------
Adam Rizkalla (1):
      iio: pressure: bmp280: Fix BMP580 temperature reading

Alexander Usyskin (1):
      mei: demote client disconnect warning on suspend to debug

Angelo Dureghello (1):
      dt-bindings: iio: dac: fix ad354xr output range

David Lechner (1):
      iio: adc: ad9467: fix scan type sign

Dumitru Ceclan (5):
      iio: adc: ad7173: fix buffers enablement for ad7176-2
      iio: adc: ad7173: Add ad7173_device_info names
      iio: adc: ad7173: Remove index from temp channel
      iio: adc: ad7173: Clear append status bit
      iio: adc: ad7173: Fix sampling frequency setting

Greg Kroah-Hartman (3):
      jfs: xattr: fix buffer overflow for invalid xattr
      Merge tag 'iio-fixes-for-6.10a' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into char-misc-linus
      .editorconfig: remove trim_trailing_whitespace option

Hans de Goede (1):
      mei: vsc: Fix wrong invocation of ACPI SID method

Harshit Mogalapalli (1):
      iio: temperature: mlx90635: Fix ERR_PTR dereference in mlx90635_probe()

Jean-Baptiste Maneyrol (4):
      iio: invensense: fix odr switching to same value
      iio: imu: inv_icm42600: stabilized timestamp in interrupt
      iio: imu: inv_icm42600: delete unneeded update watermark call
      iio: imu: inv_mpu6050: stabilized timestamping in interrupt

Johan Hovold (1):
      iio: inkern: fix channel read regression

Marc Ferland (1):
      iio: dac: ad5592r: fix temperature channel scaling value

Tomas Winkler (1):
      mei: me: release irq in mei_me_pci_resume error path

Uwe Kleine-König (1):
      parport: amiga: Mark driver struct with __refdata to prevent section mismatch

Vasileios Amoiridis (1):
      iio: imu: bmi323: Fix trigger notification in case of error

Wentong Wu (1):
      mei: vsc: Don't stop/restart mei device during system suspend/resume

Yongzhi Liu (2):
      misc: microchip: pci1xxxx: fix double free in the error handling of gp_aux_bus_probe()
      misc: microchip: pci1xxxx: Fix a memory leak in the error handling of gp_aux_bus_probe()

 .editorconfig                                      |  3 --
 .../devicetree/bindings/iio/dac/adi,ad3552r.yaml   |  2 +-
 drivers/iio/adc/ad7173.c                           | 37 ++++++++++----------
 drivers/iio/adc/ad9467.c                           |  4 +--
 .../iio/common/inv_sensors/inv_sensors_timestamp.c |  6 +++-
 drivers/iio/dac/ad5592r-base.c                     |  2 +-
 drivers/iio/imu/bmi323/bmi323_core.c               |  5 +--
 drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c  |  4 ---
 drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c | 19 +++++++++--
 drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.h |  2 ++
 drivers/iio/imu/inv_icm42600/inv_icm42600_core.c   |  1 +
 drivers/iio/imu/inv_icm42600/inv_icm42600_gyro.c   |  4 ---
 drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c         |  4 +--
 drivers/iio/imu/inv_mpu6050/inv_mpu_trigger.c      |  1 +
 drivers/iio/inkern.c                               |  2 +-
 drivers/iio/pressure/bmp280-core.c                 | 10 +++---
 drivers/iio/temperature/mlx90635.c                 |  6 ++--
 drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c      |  9 +++--
 drivers/misc/mei/main.c                            |  2 +-
 drivers/misc/mei/pci-me.c                          |  4 ++-
 drivers/misc/mei/platform-vsc.c                    | 39 +++++++++-------------
 drivers/misc/mei/vsc-fw-loader.c                   |  2 +-
 drivers/parport/parport_amiga.c                    |  8 ++++-
 fs/jfs/xattr.c                                     |  4 ++-
 24 files changed, 100 insertions(+), 80 deletions(-)

             reply	other threads:[~2024-06-16 10:50 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-16 10:50 Greg KH [this message]
2024-06-16 18:24 ` 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=Zm7DgsGWt90hFznF@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®