dmaengine: qcom_hidma: Add explicit platform_device.h and of_device.h includes
authorRob Herring <robh@kernel.org>
Mon, 10 Apr 2023 23:26:54 +0000 (18:26 -0500)
committerVinod Koul <vkoul@kernel.org>
Wed, 12 Apr 2023 17:13:08 +0000 (22:43 +0530)
qcom_hidma uses of_dma_configure() which is declared in of_device.h.
platform_device.h and of_device.h get implicitly included by of_platform.h,
but that is going to be removed soon.

Signed-off-by: Rob Herring <robh@kernel.org>
Acked-by: Sinan Kaya <okaya@kernel.org>
Link: https://lore.kernel.org/r/20230410232654.1561462-1-robh@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/qcom/hidma_mgmt.c

index 6202660..05e96b3 100644 (file)
@@ -12,6 +12,8 @@
 #include <linux/of_address.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
+#include <linux/of_device.h>
+#include <linux/platform_device.h>
 #include <linux/module.h>
 #include <linux/uaccess.h>
 #include <linux/slab.h>