diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-26 22:00:52 +0200 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 00:30:05 +0100 |
commit | 6e5fdeedca610df600aabc393c4b1f44b128fe49 (patch) | |
tree | 52a34c30bef1501f19c691a759b81b6f2603cd32 /kernel/power/hibernate.c | |
parent | kernel: fix up module header handling in rcutiny files (diff) | |
download | linux-6e5fdeedca610df600aabc393c4b1f44b128fe49.tar.xz linux-6e5fdeedca610df600aabc393c4b1f44b128fe49.zip |
kernel: Fix files explicitly needing EXPORT_SYMBOL infrastructure
These files were getting <linux/module.h> via an implicit non-obvious
path, but we want to crush those out of existence since they cost
time during compiles of processing thousands of lines of headers
for no reason. Give them the lightweight header that just contains
the EXPORT_SYMBOL infrastructure.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'kernel/power/hibernate.c')
-rw-r--r-- | kernel/power/hibernate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index 1c53f7fad5f7..b4511b6d3ef9 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c @@ -9,6 +9,7 @@ * This file is released under the GPLv2. */ +#include <linux/export.h> #include <linux/suspend.h> #include <linux/syscalls.h> #include <linux/reboot.h> |