diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-07 07:20:09 +0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-12-20 21:53:25 +0400 |
commit | 858a6303f2b14945447a964563f54c918ef3927e (patch) | |
tree | 7c5ffd43a56a5d70cf7bcdb8a8830c1e1304a1b1 /drivers/mfd | |
parent | b5488b6e868454fb10d23278de5038cda98b13ab (diff) | |
download | linux-858a6303f2b14945447a964563f54c918ef3927e.tar.xz |
mfd: include linux/module.h for ab5500-debugfs
Include linux/module.h to fix below build error:
CC drivers/mfd/ab5500-debugfs.o
drivers/mfd/ab5500-debugfs.c:571: error: 'THIS_MODULE' undeclared here (not in a function)
make[2]: *** [drivers/mfd/ab5500-debugfs.o] Error 1
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/ab5500-debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/ab5500-debugfs.c b/drivers/mfd/ab5500-debugfs.c index 43c0ebb81956..b7b2d3483fd4 100644 --- a/drivers/mfd/ab5500-debugfs.c +++ b/drivers/mfd/ab5500-debugfs.c @@ -4,7 +4,7 @@ * Debugfs support for the AB5500 MFD driver */ -#include <linux/export.h> +#include <linux/module.h> #include <linux/debugfs.h> #include <linux/seq_file.h> #include <linux/mfd/ab5500/ab5500.h> |