All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] amba: store owner from modules with amba_driver_register()
@ 2024-03-26 20:23 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 106+ messages in thread
From: Krzysztof Kozlowski @ 2024-03-26 20:23 UTC (permalink / raw)
  To: Russell King, Suzuki K Poulose, Mike Leach, James Clark,
	Alexander Shishkin, Maxime Coquelin, Alexandre Torgue,
	Linus Walleij, Andi Shyti, Olivia Mackall, Herbert Xu,
	Vinod Koul, Dmitry Torokhov, Miquel Raynal, Michal Simek,
	Krzysztof Kozlowski, Eric Auger, Alex Williamson
  Cc: linux-kernel, coresight, linux-arm-kernel, linux-stm32,
	linux-i2c, linux-crypto, dmaengine, linux-input, kvm

Merging
=======
All further patches depend on the first amba patch, therefore please ack
and this should go via one tree.

Description
===========
Modules registering driver with amba_driver_register() often forget to
set .owner field.

Solve the problem by moving this task away from the drivers to the core
amba bus code, just like we did for platform_driver in commit
9447057eaff8 ("platform_device: use a macro instead of
platform_driver_register").

Best regards,
Krzysztof

---
Krzysztof Kozlowski (19):
      amba: store owner from modules with amba_driver_register()
      coresight: cti: drop owner assignment
      coresight: catu: drop owner assignment
      coresight: etm3x: drop owner assignment
      coresight: etm4x: drop owner assignment
      coresight: funnel: drop owner assignment
      coresight: replicator: drop owner assignment
      coresight: etb10: drop owner assignment
      coresight: stm: drop owner assignment
      coresight: tmc: drop owner assignment
      coresight: tpda: drop owner assignment
      coresight: tpdm: drop owner assignment
      coresight: tpiu: drop owner assignment
      i2c: nomadik: drop owner assignment
      hwrng: nomadik: drop owner assignment
      dmaengine: pl330: drop owner assignment
      Input: ambakmi - drop owner assignment
      memory: pl353-smc: drop owner assignment
      vfio: amba: drop owner assignment

 drivers/amba/bus.c                                 | 11 +++++++----
 drivers/char/hw_random/nomadik-rng.c               |  1 -
 drivers/dma/pl330.c                                |  1 -
 drivers/hwtracing/coresight/coresight-catu.c       |  1 -
 drivers/hwtracing/coresight/coresight-cti-core.c   |  1 -
 drivers/hwtracing/coresight/coresight-etb10.c      |  1 -
 drivers/hwtracing/coresight/coresight-etm3x-core.c |  1 -
 drivers/hwtracing/coresight/coresight-etm4x-core.c |  1 -
 drivers/hwtracing/coresight/coresight-funnel.c     |  1 -
 drivers/hwtracing/coresight/coresight-replicator.c |  1 -
 drivers/hwtracing/coresight/coresight-stm.c        |  1 -
 drivers/hwtracing/coresight/coresight-tmc-core.c   |  1 -
 drivers/hwtracing/coresight/coresight-tpda.c       |  1 -
 drivers/hwtracing/coresight/coresight-tpdm.c       |  1 -
 drivers/hwtracing/coresight/coresight-tpiu.c       |  1 -
 drivers/i2c/busses/i2c-nomadik.c                   |  1 -
 drivers/input/serio/ambakmi.c                      |  1 -
 drivers/memory/pl353-smc.c                         |  1 -
 drivers/vfio/platform/vfio_amba.c                  |  1 -
 include/linux/amba/bus.h                           | 11 +++++++++--
 20 files changed, 16 insertions(+), 24 deletions(-)
---
base-commit: 1fdad13606e104ff103ca19d2d660830cb36d43e
change-id: 20240326-module-owner-amba-3ebb65256be7

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>


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

end of thread, other threads:[~2024-04-17 17:10 UTC | newest]

Thread overview: 106+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-26 20:23 [PATCH 00/19] amba: store owner from modules with amba_driver_register() Krzysztof Kozlowski
2024-03-26 20:23 ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 01/19] " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-27 20:33   ` Andi Shyti
2024-03-27 20:33     ` Andi Shyti
2024-03-28  7:51     ` Krzysztof Kozlowski
2024-03-28  7:51       ` Krzysztof Kozlowski
2024-03-28  9:09       ` Andi Shyti
2024-03-28  9:09         ` Andi Shyti
2024-03-26 20:23 ` [PATCH 02/19] coresight: cti: drop owner assignment Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 03/19] coresight: catu: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 04/19] coresight: etm3x: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 05/19] coresight: etm4x: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 06/19] coresight: funnel: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 07/19] coresight: replicator: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 08/19] coresight: etb10: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 09/19] coresight: stm: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 10/19] coresight: tmc: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 11/19] coresight: tpda: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 12/19] coresight: tpdm: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 13/19] coresight: tpiu: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-26 20:23 ` [PATCH 14/19] i2c: nomadik: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-27 20:34   ` Andi Shyti
2024-03-27 20:34     ` Andi Shyti
2024-03-28  8:13   ` Linus Walleij
2024-03-28  8:13     ` Linus Walleij
2024-04-05  8:53   ` Wolfram Sang
2024-04-05  8:53     ` Wolfram Sang
2024-03-26 20:23 ` [PATCH 15/19] hwrng: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-04-04  8:18   ` Linus Walleij
2024-04-04  8:18     ` Linus Walleij
2024-03-26 20:23 ` [PATCH 16/19] dmaengine: pl330: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-28  4:48   ` Vinod Koul
2024-03-28  4:48     ` Vinod Koul
2024-03-26 20:23 ` [PATCH 17/19] Input: ambakmi - " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-28 20:25   ` Dmitry Torokhov
2024-03-28 20:25     ` Dmitry Torokhov
2024-03-26 20:23 ` [PATCH 18/19] memory: pl353-smc: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-27  7:14   ` Miquel Raynal
2024-03-27  7:14     ` Miquel Raynal
2024-03-26 20:23 ` [PATCH 19/19] vfio: amba: " Krzysztof Kozlowski
2024-03-26 20:23   ` Krzysztof Kozlowski
2024-03-28  8:15   ` Eric Auger
2024-03-28  8:15     ` Eric Auger
2024-03-26 23:24 ` [PATCH 00/19] amba: store owner from modules with amba_driver_register() Suzuki K Poulose
2024-03-26 23:24   ` Suzuki K Poulose
2024-03-27  5:57   ` Krzysztof Kozlowski
2024-03-27  5:57     ` Krzysztof Kozlowski
2024-03-27  9:22     ` Suzuki K Poulose
2024-03-27  9:22       ` Suzuki K Poulose
2024-03-30 12:19       ` Krzysztof Kozlowski
2024-03-30 12:19         ` Krzysztof Kozlowski
2024-03-30 12:19         ` Krzysztof Kozlowski
2024-03-30 12:19         ` Krzysztof Kozlowski
2024-03-30 12:19         ` Krzysztof Kozlowski
2024-03-30 12:19         ` Krzysztof Kozlowski
2024-03-30 12:19         ` Krzysztof Kozlowski
2024-03-30 12:18 ` Krzysztof Kozlowski
2024-03-30 12:18   ` Krzysztof Kozlowski
2024-03-30 12:18   ` Krzysztof Kozlowski
2024-04-02  8:56   ` Russell King (Oracle)
2024-04-02  8:56     ` Russell King (Oracle)
2024-04-02  9:06     ` Russell King (Oracle)
2024-04-02  9:06       ` Russell King (Oracle)
2024-04-02  9:57       ` Krzysztof Kozlowski
2024-04-02  9:57         ` Krzysztof Kozlowski
2024-04-02  9:48     ` Krzysztof Kozlowski
2024-04-02  9:48       ` Krzysztof Kozlowski
2024-04-02  9:57       ` Russell King (Oracle)
2024-04-02  9:57         ` Russell King (Oracle)
2024-04-02 10:04         ` Krzysztof Kozlowski
2024-04-02 10:04           ` Krzysztof Kozlowski
2024-04-02 10:12           ` Russell King (Oracle)
2024-04-02 10:12             ` Russell King (Oracle)
2024-04-02 10:15             ` Russell King (Oracle)
2024-04-02 10:15               ` Russell King (Oracle)
2024-03-30 17:58 ` Krzysztof Kozlowski
2024-03-30 17:58   ` Krzysztof Kozlowski
2024-03-30 18:00   ` Krzysztof Kozlowski
2024-03-30 18:00     ` Krzysztof Kozlowski
2024-04-16 10:41     ` Suzuki K Poulose
2024-04-16 10:41       ` Suzuki K Poulose
2024-04-17 13:29       ` Krzysztof Kozlowski
2024-04-17 13:29         ` Krzysztof Kozlowski
2024-04-17 13:50         ` Russell King (Oracle)
2024-04-17 13:50           ` Russell King (Oracle)
2024-04-17 17:10           ` Krzysztof Kozlowski
2024-04-17 17:10             ` Krzysztof Kozlowski

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.