]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/clocksource: Add module.h to those who were using it implicitly
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 3 Jul 2011 17:36:22 +0000 (13:36 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 28 Jul 2011 03:43:52 +0000 (23:43 -0400)
A pending cleanup will mean that module.h won't be implicitly
everywhere anymore.  Make sure the modular drivers in clocksource
are actually calling out for <module.h> explicitly in advance.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/clocksource/sh_cmt.c
drivers/clocksource/sh_mtu2.c
drivers/clocksource/sh_tmu.c

index dc7c033ef587142ce080e33a2b2711a94ece1d89..c324535025ad6aa90f5b53f606bb24d550d710e9 100644 (file)
@@ -30,6 +30,7 @@
 #include <linux/clockchips.h>
 #include <linux/sh_timer.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 struct sh_cmt_priv {
        void __iomem *mapbase;
index 40630cb9823707423c84e2459b812165786c5a15..db8d5955bad47542f17c24c9186bc3c56be46403 100644 (file)
@@ -30,6 +30,7 @@
 #include <linux/clockchips.h>
 #include <linux/sh_timer.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 struct sh_mtu2_priv {
        void __iomem *mapbase;
index 80813576861781194f235f52507480e1d44a92f7..079e96ad44e875b34861126a7446004109df1f74 100644 (file)
@@ -31,6 +31,7 @@
 #include <linux/clockchips.h>
 #include <linux/sh_timer.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 struct sh_tmu_priv {
        void __iomem *mapbase;