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: accepted/tizen/common/20141203.182822~5929^2~91 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7deeab5dc414240a341e80f41b5f00620aa9ef98;p=platform%2Fkernel%2Flinux-arm64.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 32a77be..ca09bc4 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c @@ -31,6 +31,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 40630cb..db8d595 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 8081357..079e96a 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;