diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-25 14:51:47 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:16 -0400 |
commit | 15d0580f20f5d3f997e3823bfe39daa3d521a99d (patch) | |
tree | 850b48b4ec2c17656c581cdcda2b493a4de582b3 /drivers | |
parent | d2d8442d0094a7d4b585e2bbde31e3775dba7eb1 (diff) | |
download | linux-stable-15d0580f20f5d3f997e3823bfe39daa3d521a99d.tar.gz linux-stable-15d0580f20f5d3f997e3823bfe39daa3d521a99d.tar.bz2 linux-stable-15d0580f20f5d3f997e3823bfe39daa3d521a99d.zip |
drivers/input: add export.h to symbol exporting files.
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/input-compat.c | 1 | ||||
-rw-r--r-- | drivers/input/input-mt.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/input/input-compat.c b/drivers/input/input-compat.c index 1accb89ae66f..e46a86776a6b 100644 --- a/drivers/input/input-compat.c +++ b/drivers/input/input-compat.c @@ -8,6 +8,7 @@ * the Free Software Foundation. */ +#include <linux/export.h> #include <asm/uaccess.h> #include "input-compat.h" diff --git a/drivers/input/input-mt.c b/drivers/input/input-mt.c index 9150ee78e00a..f658086fbbe0 100644 --- a/drivers/input/input-mt.c +++ b/drivers/input/input-mt.c @@ -9,6 +9,7 @@ */ #include <linux/input/mt.h> +#include <linux/export.h> #include <linux/slab.h> #define TRKID_SGN ((TRKID_MAX + 1) >> 1) |