]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
lguest: add export.h to lguest files for THIS_MODULE/EXPORT_SYMBOL
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 21 Jul 2011 17:03:20 +0000 (13:03 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 23:32:13 +0000 (19:32 -0400)
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>
arch/x86/lguest/boot.c
drivers/lguest/lguest_device.c
drivers/lguest/lguest_user.c

index f63da5ef217c40deb6af93e0924246fc68f94008..cf4603ba866f7a10549ee7acdaf6fb2866e464ba 100644 (file)
@@ -56,6 +56,7 @@
 #include <linux/lguest_launcher.h>
 #include <linux/virtio_console.h>
 #include <linux/pm.h>
+#include <linux/export.h>
 #include <asm/apic.h>
 #include <asm/lguest.h>
 #include <asm/paravirt.h>
index 5289ffa2e500c77ac3a2c0c1c5cddc1332a07b7b..0dc30ffde5ad7a8defc591c42a251bb9e59c35a9 100644 (file)
@@ -15,6 +15,7 @@
 #include <linux/interrupt.h>
 #include <linux/virtio_ring.h>
 #include <linux/err.h>
+#include <linux/export.h>
 #include <linux/slab.h>
 #include <asm/io.h>
 #include <asm/paravirt.h>
index f97e625241ad792ea935a77cd3a50afbc165416a..ff4a0bc9904d0b79149d4ace4de5d8bf572b2bb8 100644 (file)
@@ -13,6 +13,7 @@
 #include <linux/eventfd.h>
 #include <linux/file.h>
 #include <linux/slab.h>
+#include <linux/export.h>
 #include "lg.h"
 
 /*L:056