summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerhard Engleder <eg@keba.com>2025-12-16 22:37:24 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-12-17 17:06:32 +0300
commitd84400dc43a7cc62030c367677f7fd34237a8d80 (patch)
tree31697bceb85a76ac76b092b1bec27633794fded3
parent230c33a81e7967791ed75bc3936e94a8b5403617 (diff)
downloadlinux-d84400dc43a7cc62030c367677f7fd34237a8d80.tar.xz
serial: 8250_keba: Add missing includes
Andy and Ilpo suggested to add missing includes, because the code shall not rely on indirect includes. Add missing includes and remove one include, which only enabled indirect includes. Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Suggested-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Gerhard Engleder <eg@keba.com> Link: https://patch.msgid.link/20251216193726.55449-2-gerhard@engleder-embedded.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/8250/8250_keba.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_keba.c b/drivers/tty/serial/8250/8250_keba.c
index c05b89551b12..e9e59ce79138 100644
--- a/drivers/tty/serial/8250/8250_keba.c
+++ b/drivers/tty/serial/8250/8250_keba.c
@@ -6,10 +6,18 @@
*/
#include <linux/auxiliary_bus.h>
-#include <linux/device.h>
+#include <linux/bits.h>
+#include <linux/container_of.h>
+#include <linux/dev_printk.h>
+#include <linux/device/devres.h>
+#include <linux/err.h>
#include <linux/io.h>
#include <linux/misc/keba.h>
+#include <linux/mod_devicetable.h>
#include <linux/module.h>
+#include <linux/serial_core.h>
+#include <linux/spinlock.h>
+#include <linux/types.h>
#include "8250.h"