LKML Archive mirror
 help / color / mirror / Atom feed
* [PATCH] w1: amd_axi_w1: Explicitly include correct DT includes
@ 2023-12-07 16:33 Rob Herring
  2023-12-08  8:10 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2023-12-07 16:33 UTC (permalink / raw
  To: Kris Chaplin, Thomas Delev, Michal Simek, Krzysztof Kozlowski
  Cc: linux-kernel

The DT of_device.h and of_platform.h date back to the separate
of_platform_bus_type before it was merged into the regular platform bus.
As part of that merge prepping Arm DT support 13 years ago, they
"temporarily" include each other. They also include platform_device.h
and of.h. As a result, there's a pretty much random mix of those include
files used throughout the tree. In order to detangle these headers and
replace the implicit includes with struct declarations, users need to
explicitly include the correct includes.

Signed-off-by: Rob Herring <robh@kernel.org>
---
 drivers/w1/masters/amd_axi_w1.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/w1/masters/amd_axi_w1.c b/drivers/w1/masters/amd_axi_w1.c
index 24a05c2de5f1..4d3a68ca9263 100644
--- a/drivers/w1/masters/amd_axi_w1.c
+++ b/drivers/w1/masters/amd_axi_w1.c
@@ -12,8 +12,9 @@
 #include <linux/io.h>
 #include <linux/jiffies.h>
 #include <linux/kernel.h>
+#include <linux/mod_devicetable.h>
 #include <linux/module.h>
-#include <linux/of_platform.h>
+#include <linux/platform_device.h>
 #include <linux/types.h>
 #include <linux/wait.h>
 
-- 
2.42.0


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

* Re: [PATCH] w1: amd_axi_w1: Explicitly include correct DT includes
  2023-12-07 16:33 [PATCH] w1: amd_axi_w1: Explicitly include correct DT includes Rob Herring
@ 2023-12-08  8:10 ` Krzysztof Kozlowski
  2023-12-11 16:04   ` Kris Chaplin
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-08  8:10 UTC (permalink / raw
  To: Kris Chaplin, Thomas Delev, Michal Simek, Rob Herring; +Cc: linux-kernel


On Thu, 07 Dec 2023 10:33:18 -0600, Rob Herring wrote:
> The DT of_device.h and of_platform.h date back to the separate
> of_platform_bus_type before it was merged into the regular platform bus.
> As part of that merge prepping Arm DT support 13 years ago, they
> "temporarily" include each other. They also include platform_device.h
> and of.h. As a result, there's a pretty much random mix of those include
> files used throughout the tree. In order to detangle these headers and
> replace the implicit includes with struct declarations, users need to
> explicitly include the correct includes.
> 
> [...]

Applied, thanks!

[1/1] w1: amd_axi_w1: Explicitly include correct DT includes
      https://git.kernel.org/krzk/linux-w1/c/efc19c44aa442197ddcbb157c6ca54a56eba8c4e

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


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

* Re: [PATCH] w1: amd_axi_w1: Explicitly include correct DT includes
  2023-12-08  8:10 ` Krzysztof Kozlowski
@ 2023-12-11 16:04   ` Kris Chaplin
  0 siblings, 0 replies; 3+ messages in thread
From: Kris Chaplin @ 2023-12-11 16:04 UTC (permalink / raw
  To: Krzysztof Kozlowski, Rob Herring; +Cc: linux-kernel, Michal Simek, Thomas Delev

On 08/12/2023 08:10, Krzysztof Kozlowski wrote:

> Applied, thanks!
> 
> [1/1] w1: amd_axi_w1: Explicitly include correct DT includes
>        https://git.kernel.org/krzk/linux-w1/c/efc19c44aa442197ddcbb157c6ca54a56eba8c4e
> 
Thank you Rob and Krzysztof,

I've regression tested this on W1 dual instance hardware running on the 
AMD KR260 development board and it continues to function correctly. 
Small change, but tested nevertheless.

Tested-by: Kris Chaplin <kris.chaplin@amd.com>

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

end of thread, other threads:[~2023-12-11 16:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-07 16:33 [PATCH] w1: amd_axi_w1: Explicitly include correct DT includes Rob Herring
2023-12-08  8:10 ` Krzysztof Kozlowski
2023-12-11 16:04   ` Kris Chaplin

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 read-only IMAP folder(s) and NNTP newsgroup(s).