aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/hvc
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-05-27 16:14:23 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 19:31:27 -0400
commit578b9ce0095ff3dd2c3b94508407c3be8fcce68d (patch)
treef80ad096b591a2c1b00eb9200e22c5a0bed0d9a7 /drivers/tty/hvc
parenta59b968ee0ff6e68443d5790fda2a117b36c1f9b (diff)
downloadkernel_goldelico_gta04-578b9ce0095ff3dd2c3b94508407c3be8fcce68d.zip
kernel_goldelico_gta04-578b9ce0095ff3dd2c3b94508407c3be8fcce68d.tar.gz
kernel_goldelico_gta04-578b9ce0095ff3dd2c3b94508407c3be8fcce68d.tar.bz2
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: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/tty/hvc')
-rw-r--r--drivers/tty/hvc/hvc_iseries.c1
-rw-r--r--drivers/tty/hvc/hvc_vio.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tty/hvc/hvc_iseries.c b/drivers/tty/hvc/hvc_iseries.c
index 21c5495..3f4a897 100644
--- a/drivers/tty/hvc/hvc_iseries.c
+++ b/drivers/tty/hvc/hvc_iseries.c
@@ -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>
diff --git a/drivers/tty/hvc/hvc_vio.c b/drivers/tty/hvc/hvc_vio.c
index 130aace..fc3c3ad 100644
--- a/drivers/tty/hvc/hvc_vio.c
+++ b/drivers/tty/hvc/hvc_vio.c
@@ -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>