diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-26 16:22:14 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:30:34 -0400 |
commit | 214f2c90b970e098e75cf719c0c5b0f1fe69b716 (patch) | |
tree | 544e50e8af7ffb4da67f19030eb38cb5577aacfc /drivers/acpi/debugfs.c | |
parent | 067d75615442454dd24210518f1c862dc6fe54ab (diff) |
acpi: add export.h to files using THIS_MODULE/EXPORT_SYMBOL
These files were relying on module.h to come in via the path
in an include/acpi header file, but we don't want to have
instances of module.h being included from include/* files
if it can be avoided. Have the files include export.h instead.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/acpi/debugfs.c')
-rw-r--r-- | drivers/acpi/debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/debugfs.c b/drivers/acpi/debugfs.c index 182a9fc36355..b55d6a20dc0e 100644 --- a/drivers/acpi/debugfs.c +++ b/drivers/acpi/debugfs.c | |||
@@ -2,6 +2,7 @@ | |||
2 | * debugfs.c - ACPI debugfs interface to userspace. | 2 | * debugfs.c - ACPI debugfs interface to userspace. |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include <linux/export.h> | ||
5 | #include <linux/init.h> | 6 | #include <linux/init.h> |
6 | #include <linux/debugfs.h> | 7 | #include <linux/debugfs.h> |
7 | #include <acpi/acpi_drivers.h> | 8 | #include <acpi/acpi_drivers.h> |