diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-21 13:03:20 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:32:13 -0400 |
commit | 39a0e33da0189c99ed3cea6945cda1bc9f4b7b83 (patch) | |
tree | 3503a8213edf62c7b5b20c06a38ed5a8208cde7b /drivers/lguest/lguest_user.c | |
parent | 51441d434f621c5c74470b36579ae7c9fb5b7139 (diff) |
lguest: add export.h to lguest files for THIS_MODULE/EXPORT_SYMBOL
We need this in advance of the module.h cleanup, or we'll
get compile errors like this:
CC drivers/lguest/lguest_device.o
drivers/lguest/lguest_device.c: In function ‘lguest_devices_init’:
drivers/lguest/lguest_device.c:490: error: ‘THIS_MODULE’ undeclared (first use in this function)
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/lguest/lguest_user.c')
-rw-r--r-- | drivers/lguest/lguest_user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/lguest/lguest_user.c b/drivers/lguest/lguest_user.c index f97e625241ad..ff4a0bc9904d 100644 --- a/drivers/lguest/lguest_user.c +++ b/drivers/lguest/lguest_user.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/eventfd.h> | 13 | #include <linux/eventfd.h> |
14 | #include <linux/file.h> | 14 | #include <linux/file.h> |
15 | #include <linux/slab.h> | 15 | #include <linux/slab.h> |
16 | #include <linux/export.h> | ||
16 | #include "lg.h" | 17 | #include "lg.h" |
17 | 18 | ||
18 | /*L:056 | 19 | /*L:056 |