linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/5] Input: lm8333 - add missing linux/input.h include
@ 2022-09-23 19:47 Dmitry Torokhov
  2022-09-23 19:47 ` [PATCH 2/5] Input: st-keyscan - add missing linux/input.h and linux/of.h includes Dmitry Torokhov
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Dmitry Torokhov @ 2022-09-23 19:47 UTC (permalink / raw)
  To: Andy Shevchenko, linux-input; +Cc: linux-kernel

We are going to clean up matrix_keymap.h from unnecessary includes,
so the driver needs to include API that it uses directly.

Also let's sort includes alphabetically and drop unneeded irq.h

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/input/keyboard/lm8333.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/input/keyboard/lm8333.c b/drivers/input/keyboard/lm8333.c
index 9dac22c14125..3052cd6dedac 100644
--- a/drivers/input/keyboard/lm8333.c
+++ b/drivers/input/keyboard/lm8333.c
@@ -4,13 +4,13 @@
  * Copyright (C) 2012 Wolfram Sang, Pengutronix <kernel@pengutronix.de>
  */
 
-#include <linux/module.h>
-#include <linux/slab.h>
-#include <linux/irq.h>
 #include <linux/i2c.h>
-#include <linux/interrupt.h>
+#include <linux/input.h>
 #include <linux/input/matrix_keypad.h>
 #include <linux/input/lm8333.h>
+#include <linux/interrupt.h>
+#include <linux/module.h>
+#include <linux/slab.h>
 
 #define LM8333_FIFO_READ		0x20
 #define LM8333_DEBOUNCE			0x22
-- 
2.37.3.998.g577e59143f-goog


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

end of thread, other threads:[~2022-09-26 12:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-23 19:47 [PATCH 1/5] Input: lm8333 - add missing linux/input.h include Dmitry Torokhov
2022-09-23 19:47 ` [PATCH 2/5] Input: st-keyscan - add missing linux/input.h and linux/of.h includes Dmitry Torokhov
2022-09-23 19:47 ` [PATCH 3/5] Input: mt6779-keypad - add missing linux/input.h include Dmitry Torokhov
2022-09-23 19:47 ` [PATCH 4/5] Input: imx_keypad " Dmitry Torokhov
2022-09-23 19:47 ` [PATCH 5/5] Input: ep93xx_keypad " Dmitry Torokhov
2022-09-26 10:57 ` [PATCH 1/5] Input: lm8333 " Andy Shevchenko

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