linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] hte: tegra-194: Use proper includes
@ 2023-01-17  8:41 Linus Walleij
  2023-04-20 20:19 ` Dipen Patel
  2023-04-20 21:22 ` Dipen Patel
  0 siblings, 2 replies; 7+ messages in thread
From: Linus Walleij @ 2023-01-17  8:41 UTC (permalink / raw)
  To: Dipen Patel; +Cc: linux-gpio, Linus Walleij

The test driver uses the gpiod consumer API so include the right
<linux/gpio/consumer.h> header. This may cause a problem with
struct of_device_id being implcitly pulled in by the legacy
header <linux/gpio.h> so include <linux/mod_devicetable.h>
explicitly as well.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
ChangeLog v1->v2:
- Its mod_devicetable not mod_device_table oops.
---
 drivers/hte/hte-tegra194-test.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/hte/hte-tegra194-test.c b/drivers/hte/hte-tegra194-test.c
index 5d776a185bd6..79eb866558d3 100644
--- a/drivers/hte/hte-tegra194-test.c
+++ b/drivers/hte/hte-tegra194-test.c
@@ -6,10 +6,11 @@
  */
 
 #include <linux/err.h>
+#include <linux/mod_devicetable.h>
 #include <linux/module.h>
 #include <linux/moduleparam.h>
 #include <linux/interrupt.h>
-#include <linux/gpio.h>
+#include <linux/gpio/consumer.h>
 #include <linux/timer.h>
 #include <linux/platform_device.h>
 #include <linux/workqueue.h>
-- 
2.34.1


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

end of thread, other threads:[~2023-04-21  7:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-17  8:41 [PATCH v2] hte: tegra-194: Use proper includes Linus Walleij
2023-04-20 20:19 ` Dipen Patel
2023-04-20 20:48   ` Linus Walleij
2023-04-20 20:54     ` Dipen Patel
2023-04-20 21:22 ` Dipen Patel
2023-04-20 21:48   ` Dipen Patel
2023-04-21  7:42     ` Linus Walleij

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