public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] SPI fixes for v6.9-merge-window
@ 2024-03-22 14:32 Mark Brown
  2024-03-22 17:16 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Brown @ 2024-03-22 14:32 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-spi, linux-kernel, Mark Brown

The following changes since commit e8f897f4afef0031fe618a8e94127a0934896aba:

  Linux 6.8 (2024-03-10 13:38:09 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git tags/spi-fix-v6.9-merge-window

for you to fetch changes up to a20ad45008a7c82f1184dc6dee280096009ece55:

  spi: spi-mt65xx: Fix NULL pointer access in interrupt handler (2024-03-21 11:28:21 +0000)

----------------------------------------------------------------
spi: Fixes for v6.9

A small collection of fixes that came in since the merge window.  Most
of it is relatively minor driver specific fixes, there's also fixes for
error handling with SPI flash devices and a fix restoring delay control
functionality for non-GPIO chip selects managed by the core.

----------------------------------------------------------------
Adam Butcher (1):
      spi: spi-imx: fix off-by-one in mx51 CPU mode burst length

Alexander Sverdlin (1):
      spi: lpspi: Avoid potential use-after-free in probe()

David Lechner (1):
      spi: docs: spidev: fix echo command format

Fei Shao (1):
      spi: spi-mt65xx: Fix NULL pointer access in interrupt handler

Florian Fainelli (1):
      spi: Fix error code checking in spi_mem_exec_op()

Janne Grunau (1):
      spi: Restore delays for non-GPIO chip select

Kousik Sanagavarapu (1):
      spi: lm70llp: fix links in doc and comments

Mark Brown (1):
      spi: Merge up v6.8 release

 .../bindings/spi/atmel,at91rm9200-spi.yaml         |   1 -
 .../devicetree/bindings/spi/samsung,spi.yaml       |   4 +-
 .../devicetree/bindings/spi/spi-controller.yaml    |  27 +
 .../devicetree/bindings/spi/spi-fsl-lpspi.yaml     |   1 +
 .../devicetree/bindings/spi/spi-nxp-fspi.yaml      |  18 +-
 Documentation/driver-api/driver-model/devres.rst   |   2 +-
 Documentation/spi/spi-lm70llp.rst                  |   4 +-
 Documentation/spi/spi-summary.rst                  | 114 ++---
 Documentation/spi/spidev.rst                       |   2 +-
 drivers/char/tpm/tpm_tis_spi_main.c                |   4 +-
 drivers/fpga/ice40-spi.c                           |   4 +-
 drivers/iio/adc/ad_sigma_delta.c                   |  14 +-
 drivers/input/joystick/psxpad-spi.c                |   4 +-
 drivers/input/rmi4/rmi_spi.c                       |   2 +-
 drivers/media/pci/mgb4/mgb4_core.c                 |  14 +-
 drivers/media/pci/netup_unidvb/netup_unidvb_spi.c  |  48 +-
 drivers/media/usb/msi2500/msi2500.c                |  38 +-
 drivers/media/v4l2-core/v4l2-spi.c                 |   4 +-
 drivers/misc/gehc-achc.c                           |   8 +-
 drivers/mmc/host/mmc_spi.c                         |   6 +-
 drivers/mtd/devices/mtd_dataflash.c                |   2 +-
 drivers/net/ethernet/micrel/ks8851_spi.c           |   4 +-
 drivers/net/ethernet/vertexcom/mse102x.c           |   2 +-
 drivers/net/ieee802154/ca8210.c                    |   2 +-
 drivers/net/wireless/marvell/libertas/if_spi.c     |   2 +-
 drivers/platform/chrome/cros_ec_spi.c              |   8 +-
 drivers/spi/Kconfig                                |   2 +-
 drivers/spi/spi-ath79.c                            |   4 +-
 drivers/spi/spi-au1550.c                           |   2 +-
 drivers/spi/spi-axi-spi-engine.c                   | 138 ++----
 drivers/spi/spi-bcm2835.c                          |  27 +-
 drivers/spi/spi-bitbang.c                          |  64 +--
 drivers/spi/spi-butterfly.c                        |   6 +-
 drivers/spi/spi-cadence-quadspi.c                  |  21 +-
 drivers/spi/spi-cavium.c                           |   6 +-
 drivers/spi/spi-cavium.h                           |   2 +-
 drivers/spi/spi-cs42l43.c                          |  22 +-
 drivers/spi/spi-davinci.c                          |   6 +-
 drivers/spi/spi-dw-dma.c                           |   2 +-
 drivers/spi/spi-fsl-dspi.c                         |  15 +-
 drivers/spi/spi-fsl-lib.c                          |  14 +-
 drivers/spi/spi-fsl-lpspi.c                        |   8 +-
 drivers/spi/spi-geni-qcom.c                        |   2 +-
 drivers/spi/spi-gpio.c                             |   2 +-
 drivers/spi/spi-imx.c                              |   4 +-
 drivers/spi/spi-intel.c                            |  34 +-
 drivers/spi/spi-lm70llp.c                          |  10 +-
 drivers/spi/spi-loopback-test.c                    |   4 +-
 drivers/spi/spi-mem.c                              |  49 +-
 drivers/spi/spi-mt65xx.c                           |  27 +-
 drivers/spi/spi-nxp-fspi.c                         |   2 +-
 drivers/spi/spi-oc-tiny.c                          |   6 +-
 drivers/spi/spi-omap-uwire.c                       |   4 +-
 drivers/spi/spi-pci1xxxx.c                         | 510 ++++++++++++++++++-
 drivers/spi/spi-pic32.c                            |   2 +-
 drivers/spi/spi-ppc4xx.c                           |  14 +-
 drivers/spi/spi-rockchip.c                         |  13 +-
 drivers/spi/spi-s3c64xx.c                          | 301 +++++++++---
 drivers/spi/spi-sh-sci.c                           |  10 +-
 drivers/spi/spi-slave-mt27xx.c                     |   2 +-
 drivers/spi/spi-stm32-qspi.c                       |   2 +-
 drivers/spi/spi-stm32.c                            |  30 +-
 drivers/spi/spi-xilinx.c                           |   4 +-
 drivers/spi/spi-xtensa-xtfpga.c                    |   2 +-
 drivers/spi/spi.c                                  | 544 ++++++++++++---------
 drivers/spi/spidev.c                               |   2 +-
 drivers/staging/fbtft/fbtft-core.c                 |   4 +-
 drivers/staging/greybus/spilib.c                   |  66 +--
 drivers/usb/gadget/udc/max3420_udc.c               |   2 +-
 drivers/video/fbdev/mmp/hw/mmp_spi.c               |  26 +-
 include/linux/amba/pl022.h                         |   4 +-
 include/linux/spi/pxa2xx_spi.h                     |   3 +-
 include/linux/spi/spi.h                            |  64 +--
 include/linux/spi/spi_bitbang.h                    |   2 +-
 include/linux/spi/spi_gpio.h                       |   4 +-
 include/media/v4l2-common.h                        |   6 +-
 76 files changed, 1606 insertions(+), 833 deletions(-)

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

end of thread, other threads:[~2024-03-22 17:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-22 14:32 [GIT PULL] SPI fixes for v6.9-merge-window Mark Brown
2024-03-22 17:16 ` 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