diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-03 17:53:48 (GMT) |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 23:31:16 (GMT) |
commit | d2d8442d0094a7d4b585e2bbde31e3775dba7eb1 (patch) | |
tree | 79a40716383a6a9e5285ec66b877fe548c17f4f4 /drivers/input/touchscreen/ad7877.c | |
parent | 778f523ddae8b382055a337cd58fe14adc0d17e2 (diff) | |
download | linux-d2d8442d0094a7d4b585e2bbde31e3775dba7eb1.tar.xz |
drivers/input: Add module.h to modular drivers implicitly using it
A pending cleanup will mean that module.h won't be implicitly
everywhere anymore. Make sure the modular drivers in input dir
are actually calling out for <module.h> explicitly in advance.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/input/touchscreen/ad7877.c')
-rw-r--r-- | drivers/input/touchscreen/ad7877.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/ad7877.c b/drivers/input/touchscreen/ad7877.c index 714d4e0..400131d 100644 --- a/drivers/input/touchscreen/ad7877.c +++ b/drivers/input/touchscreen/ad7877.c @@ -45,6 +45,7 @@ #include <linux/slab.h> #include <linux/spi/spi.h> #include <linux/spi/ad7877.h> +#include <linux/module.h> #include <asm/irq.h> #define TS_PEN_UP_TIMEOUT msecs_to_jiffies(100) |