]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
xen: Add module.h to modular drivers/xen users.
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 3 Jul 2011 20:20:57 +0000 (16:20 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 23:32:11 +0000 (19:32 -0400)
Previously these drivers just got module.h implicitly, but we
are cleaning that up and it will be no longer.  Call out the
real users of it.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/xen/balloon.c
drivers/xen/xen-pciback/conf_space.c
drivers/xen/xenbus/xenbus_probe.c
drivers/xen/xenbus/xenbus_probe_frontend.c

index 5876e1ae6c2d63be7151a6ff5cfcc7bd5b442465..1779338e1d865d313947cbfbf200092f7a3e505e 100644 (file)
@@ -39,6 +39,7 @@
 #include <linux/kernel.h>
 #include <linux/sched.h>
 #include <linux/errno.h>
+#include <linux/module.h>
 #include <linux/mm.h>
 #include <linux/bootmem.h>
 #include <linux/pagemap.h>
index 444345afbd5cfa92b8a1b3b9877ab14108bbf73c..52fed16d870161c781c23275e8aeaedb9cef9b7c 100644 (file)
@@ -10,6 +10,7 @@
  */
 
 #include <linux/kernel.h>
+#include <linux/module.h>
 #include <linux/pci.h>
 #include "pciback.h"
 #include "conf_space.h"
index cef9b0bf63d527f8a10b3cdc5d5016f281b80e59..0e867eeecb045569094c1d52d019ce8f306494b6 100644 (file)
@@ -46,6 +46,7 @@
 #include <linux/mutex.h>
 #include <linux/io.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 #include <asm/page.h>
 #include <asm/pgtable.h>
index 540587e18a941dfc9c38bca64f8d61ed58a4e4c1..2f73195512b4dbddad51176cee02e358f1f024b0 100644 (file)
@@ -13,6 +13,7 @@
 #include <linux/kthread.h>
 #include <linux/mutex.h>
 #include <linux/io.h>
+#include <linux/module.h>
 
 #include <asm/page.h>
 #include <asm/pgtable.h>