* [PATCH] scsi: Explicitly include correct DT includes
@ 2023-07-14 17:50 Rob Herring
2023-07-23 19:49 ` Martin K. Petersen
2023-07-26 2:04 ` Martin K. Petersen
0 siblings, 2 replies; 3+ messages in thread
From: Rob Herring @ 2023-07-14 17:50 UTC (permalink / raw)
To: James E.J. Bottomley, Martin K. Petersen
Cc: devicetree, linux-scsi, linux-kernel
The DT of_device.h and of_platform.h date back to the separate
of_platform_bus_type before it as 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/scsi/qlogicpti.c | 2 +-
drivers/scsi/sun_esp.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/qlogicpti.c b/drivers/scsi/qlogicpti.c
index 1e8fbd457248..f88a5421c483 100644
--- a/drivers/scsi/qlogicpti.c
+++ b/drivers/scsi/qlogicpti.c
@@ -28,7 +28,7 @@
#include <linux/jiffies.h>
#include <linux/dma-mapping.h>
#include <linux/of.h>
-#include <linux/of_device.h>
+#include <linux/platform_device.h>
#include <linux/firmware.h>
#include <linux/pgtable.h>
diff --git a/drivers/scsi/sun_esp.c b/drivers/scsi/sun_esp.c
index d06e933191a2..afa9d02a33ec 100644
--- a/drivers/scsi/sun_esp.c
+++ b/drivers/scsi/sun_esp.c
@@ -12,7 +12,8 @@
#include <linux/init.h>
#include <linux/dma-mapping.h>
#include <linux/of.h>
-#include <linux/of_device.h>
+#include <linux/of_platform.h>
+#include <linux/platform_device.h>
#include <linux/gfp.h>
#include <asm/irq.h>
--
2.40.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] scsi: Explicitly include correct DT includes
2023-07-14 17:50 [PATCH] scsi: Explicitly include correct DT includes Rob Herring
@ 2023-07-23 19:49 ` Martin K. Petersen
2023-07-26 2:04 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2023-07-23 19:49 UTC (permalink / raw)
To: Rob Herring
Cc: James E.J. Bottomley, Martin K. Petersen, devicetree, linux-scsi,
linux-kernel
Rob,
> The DT of_device.h and of_platform.h date back to the separate
> of_platform_bus_type before it as 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 to 6.6/scsi-staging, thanks!
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] scsi: Explicitly include correct DT includes
2023-07-14 17:50 [PATCH] scsi: Explicitly include correct DT includes Rob Herring
2023-07-23 19:49 ` Martin K. Petersen
@ 2023-07-26 2:04 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2023-07-26 2:04 UTC (permalink / raw)
To: James E.J. Bottomley, Rob Herring
Cc: Martin K . Petersen, devicetree, linux-scsi, linux-kernel
On Fri, 14 Jul 2023 11:50:52 -0600, Rob Herring wrote:
> The DT of_device.h and of_platform.h date back to the separate
> of_platform_bus_type before it as 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 to 6.6/scsi-queue, thanks!
[1/1] scsi: Explicitly include correct DT includes
https://git.kernel.org/mkp/scsi/c/109a2a48fc3d
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-26 2:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-14 17:50 [PATCH] scsi: Explicitly include correct DT includes Rob Herring
2023-07-23 19:49 ` Martin K. Petersen
2023-07-26 2:04 ` Martin K. Petersen
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).