diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-10 20:42:00 +0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 03:32:06 +0400 |
commit | 3ef77af154b03776c6c662c68c6332719e9eecac (patch) | |
tree | 1b8f67baef47641e890fc9587414cd30bec7717f /drivers/mmc/core/debugfs.c | |
parent | 96547f5d8b7cb0ded9c0333b43ce8271da5f3a42 (diff) | |
download | linux-3ef77af154b03776c6c662c68c6332719e9eecac.tar.xz |
mmc: Add export.h for EXPORT_SYMBOL/THIS_MODULE as required
These two basic defines were everywhere, simply because module.h
was also everywhere. But we are cleaning up the latter. So make
the exporters actually call out their need for the include.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/mmc/core/debugfs.c')
-rw-r--r-- | drivers/mmc/core/debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c index 6045ea469362..3923880118b6 100644 --- a/drivers/mmc/core/debugfs.c +++ b/drivers/mmc/core/debugfs.c @@ -8,6 +8,7 @@ * published by the Free Software Foundation. */ #include <linux/moduleparam.h> +#include <linux/export.h> #include <linux/debugfs.h> #include <linux/fs.h> #include <linux/seq_file.h> |