From: Paul Gortmaker Date: Sun, 3 Jul 2011 17:36:22 +0000 (-0400) Subject: drivers/clocksource: Add module.h to those who were using it implicitly X-Git-Tag: next-20110729~14^2~67 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0a6871dc4d1b35c9e1e4b56cc0258639ab948deb;p=karo-tx-linux.git drivers/clocksource: Add module.h to those who were using it implicitly 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 explicitly in advance. Signed-off-by: Paul Gortmaker --- diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index dc7c033ef587..c324535025ad 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c @@ -30,6 +30,7 @@ #include #include #include +#include struct sh_cmt_priv { void __iomem *mapbase; diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c index 40630cb98237..db8d5955bad4 100644 --- a/drivers/clocksource/sh_mtu2.c +++ b/drivers/clocksource/sh_mtu2.c @@ -30,6 +30,7 @@ #include #include #include +#include struct sh_mtu2_priv { void __iomem *mapbase; diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c index 808135768617..079e96ad44e8 100644 --- a/drivers/clocksource/sh_tmu.c +++ b/drivers/clocksource/sh_tmu.c @@ -31,6 +31,7 @@ #include #include #include +#include struct sh_tmu_priv { void __iomem *mapbase;