diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2011-12-20 18:34:36 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-01-09 00:37:45 +0100 |
commit | dba61c8f4fd14c4cbf375f6cdc814da87722d825 (patch) | |
tree | 76987a39608fe1e4f2fd11460dd71fd5907b0ff1 /drivers/mfd | |
parent | eedea80fe07a1548e78b51d36188f6d0fc876658 (diff) |
mfd: Fix stmpe build warning
This fixes:
drivers/mfd/stmpe.c:114:1: warning: data definition has no type or storage
class [enabled by default]
drivers/mfd/stmpe.c:114:1: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL' [-Wimplicit-int]
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/stmpe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/stmpe.c b/drivers/mfd/stmpe.c index fc2c6afb31e..f99bc2be34e 100644 --- a/drivers/mfd/stmpe.c +++ b/drivers/mfd/stmpe.c @@ -8,6 +8,7 @@ */ #include <linux/gpio.h> +#include <linux/export.h> #include <linux/kernel.h> #include <linux/interrupt.h> #include <linux/irq.h> |