linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Char/Misc driver fixes for 6.2-rc7
@ 2023-02-05 11:53 Greg KH
  2023-02-05 20:36 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Greg KH @ 2023-02-05 11:53 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, Arnd Bergmann, linux-kernel

The following changes since commit 2241ab53cbb5cdb08a6b2d4688feb13971058f65:

  Linux 6.2-rc5 (2023-01-21 16:27:01 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git tags/char-misc-6.2-rc7

for you to fetch changes up to d83d7ed260283560700d4034a80baad46620481b:

  kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup() (2023-02-03 07:45:46 +0100)

----------------------------------------------------------------
Char/Misc driver fixes for 6.2-rc7

Here are a number of small char/misc/whatever driver fixes for 6.2-rc7.
They include:
  - IIO driver fixes for some reported problems
  - nvmem driver fixes
  - fpga driver fixes
  - debugfs memory leak fix in the hv_balloon and irqdomain code
    (irqdomain change was acked by the maintainer.)

All have been in linux-next with no reported problems.

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

----------------------------------------------------------------
Andreas Kemnade (2):
      iio:adc:twl6030: Enable measurements of VUSB, VBAT and others
      iio:adc:twl6030: Enable measurement of VAC

Carlos Song (9):
      iio: imu: fxos8700: fix map label of channel type to MAGN sensor
      iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback
      iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback
      iio: imu: fxos8700: fix IMU data bits returned to user space
      iio: imu: fxos8700: fix ACCEL measurement range selection
      iio: imu: fxos8700: fix incorrect ODR mode readback
      iio: imu: fxos8700: fix failed initialization ODR mode assignment
      iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN
      iio: imu: fxos8700: fix MAGN sensor scale and unit

Dmitry Perchanov (2):
      iio: hid: fix the retval in accel_3d_capture_sample
      iio: hid: fix the retval in gyro_3d_capture_sample

Frank Li (1):
      iio: imx8qxp-adc: fix irq flood when call imx8qxp_adc_read_raw()

Greg Kroah-Hartman (4):
      Merge tag 'fpga-for-6.2-final' of git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga into char-misc-linus
      Merge tag 'iio-fixes-for-6.2a' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into char-misc-next
      HV: hv_balloon: fix memory leak with using debugfs_lookup()
      kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup()

Ilpo Järvinen (1):
      fpga: m10bmc-sec: Fix probe rollback

Jiasheng Jiang (1):
      nvmem: brcm_nvram: Add check for kzalloc

Johan Hovold (1):
      nvmem: qcom-spmi-sdam: fix module autoloading

Kai-Heng Feng (1):
      iio: light: cm32181: Fix PM support on system with 2 I2C resources

Marco Pagani (1):
      iio: adc: xilinx-ams: fix devm_krealloc() return value check

Michael Walle (2):
      nvmem: core: fix device node refcounting
      nvmem: core: fix cell removal on error

Olivier Moysan (1):
      iio: adc: stm32-dfsdm: fill module aliases

Russell King (Oracle) (5):
      nvmem: core: initialise nvmem->id early
      nvmem: core: remove nvmem_config wp_gpio
      nvmem: core: fix cleanup after dev_set_name()
      nvmem: core: fix registration vs use race
      nvmem: core: fix return value

Samuel Holland (1):
      nvmem: sunxi_sid: Always use 32-bit MMIO reads

Vladimir Oltean (1):
      iio: imu: st_lsm6dsx: fix build when CONFIG_IIO_TRIGGERED_BUFFER=m

Xiongfeng Wang (1):
      iio: adc: berlin2-adc: Add missing of_node_put() in error path

Zheng Yongjun (1):
      fpga: stratix10-soc: Fix return value check in s10_ops_write_init()

 drivers/fpga/intel-m10-bmc-sec-update.c |  17 +++--
 drivers/fpga/stratix10-soc.c            |   4 +-
 drivers/hv/hv_balloon.c                 |   2 +-
 drivers/iio/accel/hid-sensor-accel-3d.c |   1 +
 drivers/iio/adc/berlin2-adc.c           |   4 +-
 drivers/iio/adc/imx8qxp-adc.c           |  11 +++-
 drivers/iio/adc/stm32-dfsdm-adc.c       |   1 +
 drivers/iio/adc/twl6030-gpadc.c         |  32 +++++++++
 drivers/iio/adc/xilinx-ams.c            |   2 +-
 drivers/iio/gyro/hid-sensor-gyro-3d.c   |   1 +
 drivers/iio/imu/fxos8700_core.c         | 111 +++++++++++++++++++++++++-------
 drivers/iio/imu/st_lsm6dsx/Kconfig      |   1 +
 drivers/iio/light/cm32181.c             |   9 +--
 drivers/nvmem/brcm_nvram.c              |   3 +
 drivers/nvmem/core.c                    |  60 ++++++++---------
 drivers/nvmem/qcom-spmi-sdam.c          |   1 +
 drivers/nvmem/sunxi_sid.c               |  15 ++++-
 include/linux/nvmem-provider.h          |   2 -
 kernel/irq/irqdomain.c                  |   2 +-
 19 files changed, 207 insertions(+), 72 deletions(-)

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

* Re: [GIT PULL] Char/Misc driver fixes for 6.2-rc7
  2023-02-05 11:53 [GIT PULL] Char/Misc driver fixes for 6.2-rc7 Greg KH
@ 2023-02-05 20:36 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2023-02-05 20:36 UTC (permalink / raw)
  To: Greg KH; +Cc: Linus Torvalds, Andrew Morton, Arnd Bergmann, linux-kernel

The pull request you sent on Sun, 5 Feb 2023 12:53:15 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git tags/char-misc-6.2-rc7

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/d3feaff4d9492aa05b94167e170858da81159654

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2023-02-05 20:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-05 11:53 [GIT PULL] Char/Misc driver fixes for 6.2-rc7 Greg KH
2023-02-05 20:36 ` 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;
as well as URLs for NNTP newsgroup(s).