Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 578b9ce0 authored by Paul Gortmaker's avatar Paul Gortmaker
Browse files

tty: Add module.h to drivers/tty users who just expect it there.



We are cleaning up the issue that means module.h is omnipresent.
These tty users are the people who implictly are relying on that.
Fix up the real users to call out the include that they really need.

In the case of jsm_driver.c file, it had moduleparam.h but that
isn't enough and it needs the full module.h

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent a59b968e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
#include <linux/types.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/console.h>

+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/console.h>
#include <linux/module.h>

#include <asm/hvconsole.h>
#include <asm/vio.h>
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
 *
 *
 ***********************************************************************/
#include <linux/moduleparam.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/slab.h>

+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
#include <linux/console.h>
#include <linux/vt_kern.h>
#include <linux/input.h>
#include <linux/module.h>

#define MAX_CONFIG_LEN		40

+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/device.h>
#include <linux/module.h>
#include <linux/serial_core.h>
#include <linux/serial.h>
#include <linux/spi/spi.h>
Loading