linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] spi: offload-trigger: followup
@ 2025-08-15 16:43 David Lechner
  2025-08-15 16:44 ` [PATCH 1/2] MAINTAINERS: merge TRIGGER SOURCE sections David Lechner
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: David Lechner @ 2025-08-15 16:43 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-kernel, linux-spi, David Lechner, Andy Shevchenko

This cleans up a few loose ends from the series that added the ADI Util
Sigma-Delta SPI driver [1].

[1]: https://lore.kernel.org/linux-spi/20250701-iio-adc-ad7173-add-spi-offload-support-v3-0-42abb83e3dac@baylibre.com/

Signed-off-by: David Lechner <dlechner@baylibre.com>
---
David Lechner (2):
      MAINTAINERS: merge TRIGGER SOURCE sections
      spi: offload trigger: adi-util-sigma-delta: clean up imports

 MAINTAINERS                                            | 8 +-------
 drivers/spi/spi-offload-trigger-adi-util-sigma-delta.c | 5 ++++-
 2 files changed, 5 insertions(+), 8 deletions(-)
---
base-commit: bbe4656eae2729b8ca87116defa19c568898d08f
change-id: 20250815-spi-offload-trigger-followup-d33f263169d4

Best regards,
-- 
David Lechner <dlechner@baylibre.com>


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

* [PATCH 1/2] MAINTAINERS: merge TRIGGER SOURCE sections
  2025-08-15 16:43 [PATCH 0/2] spi: offload-trigger: followup David Lechner
@ 2025-08-15 16:44 ` David Lechner
  2025-08-15 16:44 ` [PATCH 2/2] spi: offload trigger: adi-util-sigma-delta: clean up imports David Lechner
  2025-08-18 20:35 ` [PATCH 0/2] spi: offload-trigger: followup Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: David Lechner @ 2025-08-15 16:44 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-kernel, linux-spi, David Lechner

Merge all of Documentation/devicetree/bindings/trigger-source/* as a
single entry.

In the previous merge cycle, there was a merge conflict between the IIO
and SPI trees and we ended up with the current state, but the intention
was to have a single entry for all trigger-source bindings.

Signed-off-by: David Lechner <dlechner@baylibre.com>
---
 MAINTAINERS | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index fe168477caa45799dfe07de2f54de6d6a1ce0615..4b133ccae8fe5e87a03892d0c30e700cd4df3bf9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -25603,16 +25603,10 @@ W:	https://github.com/srcres258/linux-doc
 T:	git https://github.com/srcres258/linux-doc.git doc-zh-tw
 F:	Documentation/translations/zh_TW/
 
-TRIGGER SOURCE - ADI UTIL SIGMA DELTA SPI
-M:	David Lechner <dlechner@baylibre.com>
-S:	Maintained
-F:	Documentation/devicetree/bindings/trigger-source/adi,util-sigma-delta-spi.yaml
-
 TRIGGER SOURCE
 M:	David Lechner <dlechner@baylibre.com>
 S:	Maintained
-F:	Documentation/devicetree/bindings/trigger-source/gpio-trigger.yaml
-F:	Documentation/devicetree/bindings/trigger-source/pwm-trigger.yaml
+F:	Documentation/devicetree/bindings/trigger-source/*
 
 TRUSTED SECURITY MODULE (TSM) INFRASTRUCTURE
 M:	Dan Williams <dan.j.williams@intel.com>

-- 
2.43.0


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

* [PATCH 2/2] spi: offload trigger: adi-util-sigma-delta: clean up imports
  2025-08-15 16:43 [PATCH 0/2] spi: offload-trigger: followup David Lechner
  2025-08-15 16:44 ` [PATCH 1/2] MAINTAINERS: merge TRIGGER SOURCE sections David Lechner
@ 2025-08-15 16:44 ` David Lechner
  2025-08-18 20:35 ` [PATCH 0/2] spi: offload-trigger: followup Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: David Lechner @ 2025-08-15 16:44 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-kernel, linux-spi, David Lechner, Andy Shevchenko

Clean up imports using include-what-you-use principles.

Suggested-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Signed-off-by: David Lechner <dlechner@baylibre.com>
---
 drivers/spi/spi-offload-trigger-adi-util-sigma-delta.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/spi/spi-offload-trigger-adi-util-sigma-delta.c b/drivers/spi/spi-offload-trigger-adi-util-sigma-delta.c
index 035d088d4d33d6d32146a340381bb167f080e085..8468c773713a3d203b2e668f340ee3f477b8fb6c 100644
--- a/drivers/spi/spi-offload-trigger-adi-util-sigma-delta.c
+++ b/drivers/spi/spi-offload-trigger-adi-util-sigma-delta.c
@@ -5,12 +5,15 @@
  */
 
 #include <linux/clk.h>
-#include <linux/device.h>
+#include <linux/dev_printk.h>
+#include <linux/err.h>
 #include <linux/mod_devicetable.h>
 #include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/property.h>
 #include <linux/spi/offload/provider.h>
+#include <linux/spi/offload/types.h>
+#include <linux/types.h>
 
 static bool adi_util_sigma_delta_match(struct spi_offload_trigger *trigger,
 				       enum spi_offload_trigger_type type,

-- 
2.43.0


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

* Re: [PATCH 0/2] spi: offload-trigger: followup
  2025-08-15 16:43 [PATCH 0/2] spi: offload-trigger: followup David Lechner
  2025-08-15 16:44 ` [PATCH 1/2] MAINTAINERS: merge TRIGGER SOURCE sections David Lechner
  2025-08-15 16:44 ` [PATCH 2/2] spi: offload trigger: adi-util-sigma-delta: clean up imports David Lechner
@ 2025-08-18 20:35 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2025-08-18 20:35 UTC (permalink / raw)
  To: David Lechner; +Cc: linux-kernel, linux-spi, Andy Shevchenko

On Fri, 15 Aug 2025 11:43:59 -0500, David Lechner wrote:
> This cleans up a few loose ends from the series that added the ADI Util
> Sigma-Delta SPI driver [1].
> 
> [1]: https://lore.kernel.org/linux-spi/20250701-iio-adc-ad7173-add-spi-offload-support-v3-0-42abb83e3dac@baylibre.com/
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/2] MAINTAINERS: merge TRIGGER SOURCE sections
      commit: 07826c02eda9da406524bd50cd3fd321be8c9447
[2/2] spi: offload trigger: adi-util-sigma-delta: clean up imports
      commit: 0056b410355713556d8a10306f82e55b28d33ba8

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


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

end of thread, other threads:[~2025-08-18 20:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-15 16:43 [PATCH 0/2] spi: offload-trigger: followup David Lechner
2025-08-15 16:44 ` [PATCH 1/2] MAINTAINERS: merge TRIGGER SOURCE sections David Lechner
2025-08-15 16:44 ` [PATCH 2/2] spi: offload trigger: adi-util-sigma-delta: clean up imports David Lechner
2025-08-18 20:35 ` [PATCH 0/2] spi: offload-trigger: followup Mark Brown

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).