linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Greg KH <greg@kroah.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
	Alexandru Ardelean <aardelean@deviqon.com>,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>,
	Tomislav Denis <tomislav.denis@avl.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Next Mailing List <linux-next@vger.kernel.org>
Subject: Re: linux-next: build failure after merge of the staging tree
Date: Mon, 26 Apr 2021 15:41:21 +0100	[thread overview]
Message-ID: <20210426144121.GE4590@sirena.org.uk> (raw)
In-Reply-To: <YGFwWq//sh6onrUH@kroah.com>

[-- Attachment #1: Type: text/plain, Size: 15739 bytes --]

On Mon, Mar 29, 2021 at 08:14:50AM +0200, Greg KH wrote:

> Thanks for the fix, looks correct to me.

Here's the SPI pull request if you want to pull it in:

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git tags/spi-v5.13

for you to fetch changes up to 86527bcbc88922ea40df05d28189ee15489d2cf1:

  spi: Rename enable1 to activate in spi_set_cs() (2021-04-23 15:36:18 +0100)

----------------------------------------------------------------
spi: Updates for v5.13

The only core work for SPI this time around is the completion of the
conversion to the new style method for specifying transfer delays,
meaning we can cope with what most controllers support more directly
using conversions in the core rather than open coding in drivers.
Otherwise it's a good stack of cleanups and fixes plus a few new
drivers.

The conversion to new style transfer delay will cause an issue with a
newly added staging driver which has a straightforward resolution in
-next.

 - Completion of the conversion to new style transfer delay
   configuration.
 - Introduction and use of module_parport_driver() helper, merged here
   as there's no parport tree.
 - Support for Altera SoCs on DFL buses, NXP i.MX8DL, HiSilicon Kunpeng,
   MediaTek MT8195,

----------------------------------------------------------------
Alain Volmat (2):
      spi: stm32: avoid ifdef CONFIG_PM for pm callbacks
      spi: stm32: Fix use-after-free on unbind

Alexander Sverdlin (1):
      spi: omap2-mcspi: Activate pinctrl idle state during runtime suspend

Alexandru Ardelean (10):
      spi: spi-axi-spi-engine: remove usage of delay_usecs
      spi: bcm63xx-spi: don't check 'delay_usecs' field
      spi: spi-bcm-qspi: replace 'delay_usecs' with 'delay.value' check
      spi: spi-sh: replace 'delay_usecs' with 'delay.value' in pr_debug
      spi: spi-tegra20-flash: don't check 'delay_usecs' field for spi transfer
      staging: greybus: spilib: use 'spi_delay_to_ns' for getting xfer delay
      spi: spi-falcon: remove check for 'delay_usecs'
      spi: fsl-espi: remove usage of 'delay_usecs' field
      spi: core: remove 'delay_usecs' field from spi_transfer
      spi: docs: update info about 'delay_usecs'

Amit Kumar Mahapatra (1):
      spi: spi-zynqmp-gqspi: Resolved slab-out-of-bounds bug

Andy Shevchenko (5):
      parport: Introduce module_parport_driver() helper macro
      spi: butterfly: Switch to use module_parport_driver()
      spi: lm70llp: Switch to use module_parport_driver()
      spi: Make error handling of gpiod_count() call cleaner
      spi: Rename enable1 to activate in spi_set_cs()

Antonio Borneo (1):
      spi: stm32: drop devres version of spi_register_master

Arnd Bergmann (2):
      spi: rockchip: avoid objtool warning
      spi: stm32-qspi: fix debug format string

Christophe JAILLET (1):
      spi: fsi: add a missing of_node_put

Christophe Kerello (1):
      spi: stm32-qspi: fix pm_runtime usage_count counter

Clark Wang (1):
      spi: imx: add a check for speed_hz before calculating the clock

Colin Ian King (1):
      spi: Fix spelling mistake "softwade" -> "software"

David Bauer (3):
      spi: ath79: always call chipselect function
      spi: ath79: remove spi-master setup and cleanup assignment
      spi: sync up initial chipselect state

Dinghao Liu (2):
      spi: spi-zynqmp-gqspi: Fix runtime PM imbalance in zynqmp_qspi_probe
      spi: spi-zynqmp-gqspi: Fix runtime PM imbalance in zynqmp_qspi_probe

Eddie James (1):
      spi: fsi: Remove multiple sequenced ops for restricted chips

Fabio Estevam (1):
      spi: imx: Improve driver description

Han Xu (1):
      spi: spi-nxp-fspi: Add imx8dxl driver support

Heikki Krogerus (4):
      spi: Add support for software nodes
      ARM: pxa: icontrol: Constify the software node
      ARM: pxa: zeus: Constify the software node
      spi: Remove support for dangling device properties

Heiko Schocher (2):
      spi: fspi: enable fspi driver for on imx8mp
      dt-bindings: spi: add compatible entry for imx8mp in FlexSPI controller

Jarkko Nikula (1):
      spi: pxa2xx: Add support for Intel Alder Lake PCH-M

Jay Fang (14):
      spi: cadence-quadspi: Silence shiftTooManyBitsSigned warning
      spi: spi-topcliff-pch: Fix checkpatch spacing error
      spi: sprd: Fix checkpatch spacing error
      spi: pxa2xx: Fix checkpatch spacing errors
      spi: omap-100k: Fix checkpatch spacing errors
      spi: spi-mtk-nor: Fix checkpatch spacing error
      spi: dln2: Fix open brace following function definitions go on the next line
      spi: spi-bitbang: Fix open brace following function definitions go on the next line
      spi: jcore: Fix trailing statements should be on next line
      spi: spi-mem: Fix code indent should use tabs where possible
      spi: rockchip: Fix code indent should use tabs where possible
      spi: pl022: Fix trailing whitespace
      spi: Add HiSilicon SPI Controller Driver for Kunpeng SoCs
      spi: hisi-kunpeng: Fix Woverflow warning on conversion

Joe Burmeister (1):
      spi: Handle SPI device setup callback failure.

Junlin Yang (1):
      spi: cadence-quadspi: add missing of_node_put

Krzysztof Kozlowski (3):
      spi: s3c64xx: simplify getting of_device_id match data
      spi: s3c64xx: correct kerneldoc of s3c64xx_spi_port_config
      spi: s3c64xx: constify driver/match data

Kuldeep Singh (4):
      spi: spi-nxp-fspi: Add support for IP read only
      spi: spi-nxp-fspi: Implement errata workaround for LS1028A
      spi: spi-nxp-fspi: Add imx8dxl support
      spi: Convert Freescale QSPI binding to json schema

Leilk Liu (4):
      spi: update spi master bindings for MT8195 SoC
      spi: update spi slave bindings for MT8195 SoC
      spi: mediatek: add mtk_spi_compatible support
      spi: mediatek: add mt8195 spi slave support

Linus Walleij (5):
      spi: pl022: User more sensible defaults
      spi: pl022: Drop custom per-chip cs_control
      spi: pl022: Use GPIOs looked up by the core
      spi: pl022: Convert to use GPIO descriptors
      ARM/spi: spear: Drop PL022 num_chipselect

Mark Brown (11):
      Merge existing fixes from spi/for-5.12
      Merge series "parport: Introduce module_parport_driver() and use it" from Andy Shevchenko <andriy.shevchenko@linux.intel.com>:
      Merge series "spi: finalize 'delay_usecs' removal/transition" from Alexandru Ardelean <aardelean@deviqon.com>:
      Merge series "spi: Adding support for software nodes" from Heikki Krogerus <heikki.krogerus@linux.intel.com>:
      Merge series "enable flexspi support on imx8mp" from Heiko Schocher <hs@denx.de>:
      Merge series "Convert Cadence QSPI bindings to yaml" from Pratyush Yadav <p.yadav@ti.com>:
      Merge series "spi: spi-zynqmp-gpspi: fix some issues" from quanyang.wang@windriver.com Quanyang Wang <quanyang.wang@windriver.com>:
      Merge series "Minor updates for hisi-sfc-v3xx" from Yicong Yang <yangyicong@hisilicon.com>:
      Merge branch 'for-5.12' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi into spi-5.13
      Merge series "spi: stm32-qspi: Fix and update" from <patrice.chotard@foss.st.com> Patrice Chotard <patrice.chotard@foss.st.com>:
      Merge series "spi: altera: Add DFL bus support for Altera SPI" from matthew.gerlach@linux.intel.com Matthew Gerlach <matthew.gerlach@linux.intel.com>:

Mason Zhang (1):
      spi: mt6779: update spi document

Matthew Gerlach (2):
      spi: altera: separate core code from platform code
      spi: altera: Add DFL bus driver for Altera API Controller

Muhammad Usama Anjum (1):
      spi: orion: set devdata properly as it is being used later

Patrice Chotard (3):
      spi: stm32-qspi: Trigger DMA only if more than 4 bytes to transfer
      spi: stm32-qspi: Add dirmap support
      spi: stm32-qspi: Fix compilation warning in ARM64

Quanyang Wang (9):
      spi: spi-zynqmp-gqspi: use wait_for_completion_timeout to make zynqmp_qspi_exec_op not interruptible
      spi: spi-zynqmp-gqspi: add mutex locking for exec_op
      spi: spi-zynqmp-gqspi: transmit dummy circles by using the controller's internal functionality
      spi: spi-zynqmp-gqspi: fix incorrect operating mode in zynqmp_qspi_read_op
      spi: spi-zynqmp-gqspi: fix clk_enable/disable imbalance issue
      spi: spi-zynqmp-gqspi: fix hang issue when suspend/resume
      spi: spi-zynqmp-gqspi: fix use-after-free in zynqmp_qspi_exec_op
      spi: spi-zynqmp-gqspi: return -ENOMEM if dma_map_single fails
      spi: tools: make a symbolic link to the header file spi.h

Rafał Miłecki (1):
      spi: brcm,spi-bcm-qspi: convert to the json-schema

Ramuthevar Vadivel Murugan (1):
      spi: Convert cadence-quadspi.txt to cadence-quadspi.yaml

Seiya Wang (1):
      dt-bindings: spi: Add compatible for Mediatek MT8195

Shivamurthy Shastri (1):
      spidev: Add Micron SPI NOR Authenta device compatible

Tian Tao (3):
      spi: orion: Use device_get_match_data() helper
      spi: simplify devm_spi_register_controller
      spi: davinci: Use device_get_match_data() helper

Tudor Ambarus (3):
      spi: spi-ti-qspi: Free DMA resources
      spi: spi-ti-qspi: Free DMA resources
      spi: atmel: Drop unused variable

Wan Jiabing (1):
      spi: Remove repeated struct declaration

Wang Li (2):
      spi: fsl-lpspi: Fix PM reference leak in lpspi_prepare_xfer_hardware()
      spi: qup: fix PM reference leak in spi_qup_remove()

Wei Yongjun (3):
      spi: dln2: Fix reference leak to master
      spi: omap-100k: Fix reference leak to master
      spi: spi-zynqmp-gqspi: Fix missing unlock on error in zynqmp_qspi_exec_op()

William A. Kennington III (1):
      spi: Fix use-after-free with devm_spi_alloc_*

Yang Yingliang (1):
      spi: fsl: add missing iounmap() on error in of_fsl_spi_probe()

Yicong Yang (2):
      spi: hisi-sfc-v3xx: fix potential irq race condition
      spi: hisi-sfc-v3xx: drop unnecessary ACPI_PTR and related ifendif protection

Álvaro Fernández Rojas (4):
      spi: bcm63xx-spi: fix pm_runtime
      spi: bcm63xx-hsspi: fix pm_runtime
      spi: bcm63xx-spi: fix pm_runtime
      spi: bcm63xx-hsspi: fix pm_runtime

 .../devicetree/bindings/spi/brcm,spi-bcm-qspi.txt  | 245 ----------
 .../devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml | 198 ++++++++
 .../devicetree/bindings/spi/cadence-quadspi.txt    |  68 ---
 .../devicetree/bindings/spi/cdns,qspi-nor.yaml     | 143 ++++++
 .../devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml  |  96 ++++
 .../bindings/spi/mediatek,spi-mtk-nor.yaml         |   1 +
 .../devicetree/bindings/spi/spi-fsl-qspi.txt       |  66 ---
 .../devicetree/bindings/spi/spi-mt65xx.txt         |   2 +
 .../devicetree/bindings/spi/spi-nxp-fspi.txt       |   2 +
 .../devicetree/bindings/spi/spi-slave-mt27xx.txt   |   1 +
 Documentation/spi/spi-summary.rst                  |   7 +-
 MAINTAINERS                                        |  10 +-
 arch/arm/mach-pxa/icontrol.c                       |  12 +-
 arch/arm/mach-pxa/zeus.c                           |   6 +-
 arch/arm/mach-spear/spear320.c                     |   2 -
 arch/arm/mach-spear/spear3xx.c                     |  10 -
 drivers/spi/Kconfig                                |  28 +-
 drivers/spi/Makefile                               |   5 +-
 drivers/spi/{spi-altera.c => spi-altera-core.c}    | 166 +------
 drivers/spi/spi-altera-dfl.c                       | 204 +++++++++
 drivers/spi/spi-altera-platform.c                  | 172 +++++++
 drivers/spi/spi-ath79.c                            |   3 +-
 drivers/spi/spi-atmel.c                            |   4 -
 drivers/spi/spi-axi-spi-engine.c                   |  12 +-
 drivers/spi/spi-bcm-qspi.c                         |   2 +-
 drivers/spi/spi-bcm63xx-hsspi.c                    |   7 +-
 drivers/spi/spi-bcm63xx.c                          |   8 +-
 drivers/spi/spi-bitbang.c                          |   9 +-
 drivers/spi/spi-butterfly.c                        |  13 +-
 drivers/spi/spi-cadence-quadspi.c                  |   8 +-
 drivers/spi/spi-davinci.c                          |   9 +-
 drivers/spi/spi-dln2.c                             |   5 +-
 drivers/spi/spi-falcon.c                           |   2 +-
 drivers/spi/spi-fsi.c                              |  31 +-
 drivers/spi/spi-fsl-espi.c                         |  17 +-
 drivers/spi/spi-fsl-lpspi.c                        |   2 +-
 drivers/spi/spi-fsl-spi.c                          |  23 +-
 drivers/spi/spi-hisi-kunpeng.c                     | 505 +++++++++++++++++++++
 drivers/spi/spi-hisi-sfc-v3xx.c                    |   7 +-
 drivers/spi/spi-imx.c                              |  39 +-
 drivers/spi/spi-jcore.c                            |   3 +-
 drivers/spi/spi-lm70llp.c                          |  13 +-
 drivers/spi/spi-mem.c                              |   6 +-
 drivers/spi/spi-mtk-nor.c                          |   2 +-
 drivers/spi/spi-nxp-fspi.c                         | 115 ++++-
 drivers/spi/spi-omap-100k.c                        |  14 +-
 drivers/spi/spi-omap2-mcspi.c                      |  24 +-
 drivers/spi/spi-orion.c                            |   5 +-
 drivers/spi/spi-pl022.c                            | 108 +----
 drivers/spi/spi-pxa2xx-pci.c                       |   2 +-
 drivers/spi/spi-pxa2xx.c                           |   6 +-
 drivers/spi/spi-qup.c                              |   2 +-
 drivers/spi/spi-rockchip.c                         |  19 +-
 drivers/spi/spi-s3c64xx.c                          |  31 +-
 drivers/spi/spi-sh.c                               |   4 +-
 drivers/spi/spi-slave-mt27xx.c                     |  36 +-
 drivers/spi/spi-sprd-adi.c                         |   2 +-
 drivers/spi/spi-stm32-qspi.c                       | 106 ++++-
 drivers/spi/spi-stm32.c                            |  39 +-
 drivers/spi/spi-tegra20-sflash.c                   |   3 +-
 drivers/spi/spi-ti-qspi.c                          |  20 +-
 drivers/spi/spi-topcliff-pch.c                     |   3 +-
 drivers/spi/spi-zynqmp-gqspi.c                     | 178 ++++----
 drivers/spi/spi.c                                  |  97 ++--
 drivers/spi/spidev.c                               |   1 +
 drivers/staging/greybus/spilib.c                   |   5 +-
 include/linux/amba/pl022.h                         |  10 -
 include/linux/parport.h                            |  12 +-
 include/linux/spi/altera.h                         |  21 +
 include/linux/spi/spi.h                            |  23 +-
 tools/spi/Makefile                                 |   5 +-
 71 files changed, 2003 insertions(+), 1062 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
 create mode 100644 Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
 delete mode 100644 Documentation/devicetree/bindings/spi/cadence-quadspi.txt
 create mode 100644 Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
 create mode 100644 Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
 delete mode 100644 Documentation/devicetree/bindings/spi/spi-fsl-qspi.txt
 rename drivers/spi/{spi-altera.c => spi-altera-core.c} (56%)
 create mode 100644 drivers/spi/spi-altera-dfl.c
 create mode 100644 drivers/spi/spi-altera-platform.c
 create mode 100644 drivers/spi/spi-hisi-kunpeng.c

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  parent reply	other threads:[~2021-04-26 14:41 UTC|newest]

Thread overview: 143+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-29  5:55 linux-next: build failure after merge of the staging tree Stephen Rothwell
2021-03-29  6:14 ` Greg KH
2021-03-29  7:25   ` Alexandru Ardelean
2021-04-26 14:41   ` Mark Brown [this message]
2021-04-26 16:23     ` Greg KH
2021-04-26 16:40       ` Mark Brown
2021-04-26  1:29 ` Stephen Rothwell
2021-04-26 22:07 ` Stephen Rothwell
  -- strict thread matches above, loose matches on Subject: below --
2021-10-08  4:15 Stephen Rothwell
2021-10-08  5:39 ` Sergio Paracuellos
2021-08-16  3:52 Stephen Rothwell
2021-08-16  5:24 ` Greg KH
2021-08-16 15:10 ` Greg KH
2021-08-16 21:46   ` Stephen Rothwell
2020-12-07  5:46 Stephen Rothwell
2020-12-07  9:26 ` Greg KH
2020-12-07  9:45   ` Stephen Rothwell
2020-12-14 20:27 ` Stephen Rothwell
2019-10-08  2:49 Stephen Rothwell
2019-10-08 12:46 ` Greg KH
2019-06-24  7:38 Stephen Rothwell
2019-06-24  8:46 ` Greg KH
2018-07-30  6:16 Stephen Rothwell
2018-07-30  6:31 ` Gao Xiang
2018-08-01  9:09   ` Chao Yu
2018-08-01 15:07     ` Stephen Rothwell
2018-08-02  6:12       ` Chao Yu
2018-08-02  6:15     ` Greg KH
2018-08-02  7:01       ` Chao Yu
2018-08-02  7:14         ` Greg KH
2018-08-02  7:48           ` Chao Yu
2018-07-30  9:47 ` David Howells
2018-07-30 10:45   ` Gao Xiang
2018-07-30 11:18   ` David Howells
2018-07-30 11:23     ` Gao Xiang
2018-07-17  6:28 Stephen Rothwell
2018-07-17  6:49 ` Ivan Safonov
2018-07-17  8:06   ` Greg KH
2017-09-26  3:54 Stephen Rothwell
2017-09-26  6:15 ` Jonathan Cameron
2017-05-01  4:42 Stephen Rothwell
2017-05-04 23:41 ` Greg KH
2017-04-27  4:20 Stephen Rothwell
2017-04-30 12:15 ` Greg KH
2017-04-18  5:53 Stephen Rothwell
2017-04-18  7:04 ` Johannes Berg
2017-04-18  5:32 Stephen Rothwell
2017-04-18  5:54 ` Greg KH
2017-04-18  6:26   ` Stephen Rothwell
2017-04-18 11:16     ` Greg KH
2017-04-11  5:04 Stephen Rothwell
2017-04-11  5:15 ` Greg KH
2017-04-11  5:38   ` Greg KH
2017-04-11  5:48     ` Stephen Rothwell
2017-04-10  5:10 Stephen Rothwell
2017-03-07  1:25 Stephen Rothwell
2017-03-07  4:46 ` Greg KH
2017-03-07  8:47 ` Greg KH
2017-03-07  9:49   ` Stephen Rothwell
2017-03-07 12:24     ` Greg KH
2016-05-13  3:15 Stephen Rothwell
2016-05-13  8:36 ` Greg KH
2015-06-03  7:16 Stephen Rothwell
2015-06-03  7:23 ` Johannes Berg
2015-03-10  5:07 Stephen Rothwell
2015-03-10 15:08 ` Greg KH
2015-03-10 15:53   ` Sudip Mukherjee
2015-03-10 20:57   ` Stephen Rothwell
2014-09-30  8:04 Stephen Rothwell
2014-10-02 16:31 ` Greg KH
2014-08-17 22:47 Stephen Rothwell
2014-06-20  4:18 Stephen Rothwell
2014-06-20 16:53 ` Greg KH
2014-07-10  0:27   ` Stephen Rothwell
2014-07-10  3:09     ` Greg KH
2014-09-22 10:25 ` Geert Uytterhoeven
2014-01-24  2:01 Stephen Rothwell
2014-01-24  2:34 ` Greg KH
2014-01-24  3:53 ` Greg KH
2014-01-24  4:04   ` Stephen Rothwell
2014-01-24  4:08     ` Greg KH
2013-07-26  6:02 Stephen Rothwell
2013-07-26 21:03 ` Greg KH
2013-07-26 21:22   ` Eli Billauer
2013-07-26 21:56     ` Greg KH
2013-07-26 22:54       ` Eli Billauer
2013-07-26 23:28         ` Greg KH
2013-07-27 13:30           ` Eli Billauer
2013-07-25  3:19 Stephen Rothwell
2013-07-25  4:25 ` Greg KH
2013-06-04  4:57 Stephen Rothwell
2013-06-04  5:42 ` Greg KH
2013-06-04  8:55   ` Peng Tao
2013-01-08  2:23 Stephen Rothwell
2013-01-08  4:27 ` Greg KH
2013-01-08  4:29   ` Stephen Rothwell
2013-01-08 16:46     ` H Hartley Sweeten
2012-09-12  6:07 Stephen Rothwell
2012-09-12 16:13 ` Greg KH
2012-09-14  7:55 ` Samuel Ortiz
2012-09-18 20:40 ` Jonathan Cameron
2012-02-17  4:10 Stephen Rothwell
2012-02-17 17:04 ` Greg KH
2012-02-17 17:23   ` Dan Magenheimer
2012-02-16  4:23 Stephen Rothwell
2012-02-16  5:15 ` Greg KH
2012-02-16 14:39   ` Dan Magenheimer
2012-02-16 21:25     ` Stephen Rothwell
2012-02-16 21:49       ` Dan Magenheimer
2012-02-16 23:39         ` Stephen Rothwell
2012-02-17  0:17           ` Greg KH
2012-02-17 16:01       ` Konrad Rzeszutek Wilk
2012-02-10  4:58 Stephen Rothwell
2012-02-10  5:29 ` Greg KH
2012-02-10 17:21   ` Dan Magenheimer
2012-02-10 17:43     ` Greg KH
2012-02-10 18:22       ` Seth Jennings
2012-02-14 23:43       ` Dan Magenheimer
2012-02-15  0:03         ` Greg KH
2012-02-15  0:54           ` Dan Magenheimer
2012-02-15  2:33             ` Greg KH
2012-02-15 16:14               ` Dan Magenheimer
2011-08-25  5:02 Stephen Rothwell
2011-08-25  5:15 ` Larry Finger
2011-08-25 15:39   ` Greg KH
2011-07-25  5:21 Stephen Rothwell
2011-07-16 13:18 Stephen Rothwell
2011-07-17  9:13 ` Greg KH
2011-07-16 13:15 Stephen Rothwell
2011-07-16 23:39 ` Alan Cox
2011-07-17  9:15   ` Greg KH
2011-07-06  5:09 Stephen Rothwell
2011-07-06 15:12 ` Greg KH
2011-07-06  5:02 Stephen Rothwell
2011-07-06 15:12 ` Greg KH
2010-04-27  4:12 Stephen Rothwell
2010-04-27 15:13 ` Greg KH
2010-04-28  6:14   ` Stephen Rothwell
2010-04-28 15:28     ` Greg KH
2010-05-01 15:42       ` Tobias Klauser
2010-05-03 16:17       ` Tobias Klauser
2010-05-05  2:37         ` Stephen Rothwell
2010-05-05  8:39           ` Tobias Klauser

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=20210426144121.GE4590@sirena.org.uk \
    --to=broonie@kernel.org \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=aardelean@deviqon.com \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-next@vger.kernel.org \
    --cc=sfr@canb.auug.org.au \
    --cc=tomislav.denis@avl.com \
    /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;
as well as URLs for NNTP newsgroup(s).