drivers/input: add export.h to symbol exporting files.
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 25 Oct 2011 18:51:47 +0000 (14:51 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 23:31:16 +0000 (19:31 -0400)
These files are not modules but are exporting symbols and/or
making use of THIS_MODULE macro.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/input/input-compat.c
drivers/input/input-mt.c

index 1accb89..e46a867 100644 (file)
@@ -8,6 +8,7 @@
  * the Free Software Foundation.
  */
 
+#include <linux/export.h>
 #include <asm/uaccess.h>
 #include "input-compat.h"
 
index 9150ee7..f658086 100644 (file)
@@ -9,6 +9,7 @@
  */
 
 #include <linux/input/mt.h>
+#include <linux/export.h>
 #include <linux/slab.h>
 
 #define TRKID_SGN      ((TRKID_MAX + 1) >> 1)