]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drivers/memstick: Add module.h to the prev. implicit modular users
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 3 Jul 2011 19:12:37 +0000 (15:12 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 23:31:52 +0000 (19:31 -0400)
This is another group of drivers that simply assumed that module.h was
everywhere.  But it won't be once we clean up its presence from device.h
Call out the real users of it in advance.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/memstick/core/memstick.c
drivers/memstick/core/mspro_block.c
drivers/memstick/host/jmb38x_ms.c
drivers/memstick/host/tifm_ms.c

index 8c1d85e27be4bcecb8862fdce7eeb36157cfc209..56ff19cdc2ad81ca015b9e9364318609921dcace 100644 (file)
@@ -17,6 +17,7 @@
 #include <linux/fs.h>
 #include <linux/delay.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 #define DRIVER_NAME "memstick"
 
index 4a1909a32b6021827a46e9b9db87467ae9c545c5..9729b92fbfdd3150280328a2be3d5872beacd618 100644 (file)
@@ -20,6 +20,7 @@
 #include <linux/slab.h>
 #include <linux/mutex.h>
 #include <linux/memstick.h>
+#include <linux/module.h>
 
 #define DRIVER_NAME "mspro_block"
 
index d89d925caecf39a8d2f2feb3e6f58361eee14682..6ce70e9615d342660f7da9e71339ffad4c3087a3 100644 (file)
@@ -17,6 +17,7 @@
 #include <linux/highmem.h>
 #include <linux/memstick.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 #define DRIVER_NAME "jmb38x_ms"
 
index 03f71a431c8207f403fcf1924ffe3b9f3ce36659..b7aacf47703a33c1609f51ddfb5c7ec56a91a1de 100644 (file)
@@ -17,6 +17,7 @@
 #include <linux/highmem.h>
 #include <linux/scatterlist.h>
 #include <linux/log2.h>
+#include <linux/module.h>
 #include <asm/io.h>
 
 #define DRIVER_NAME "tifm_ms"