diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-08-29 10:58:55 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:32:22 -0400 |
commit | e7455b7a207b7ae75945a1953b7dd41b9d197fbb (patch) | |
tree | 24f72b1e58f3f001da962cfaa532a9785b8ee0cd | |
parent | 26e6e9e54ca197005421e0f0b852e3517eb3e2f5 (diff) |
watchdog: Add module.h to drivers/watchdog/stmp3xxx_wdt.c
This is a module and so needs module.h so that it will still build
once the implicit presence of module.h is removed.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | drivers/watchdog/stmp3xxx_wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/stmp3xxx_wdt.c b/drivers/watchdog/stmp3xxx_wdt.c index b3421fd2cda..ac2346a452e 100644 --- a/drivers/watchdog/stmp3xxx_wdt.c +++ b/drivers/watchdog/stmp3xxx_wdt.c @@ -14,6 +14,7 @@ #include <linux/platform_device.h> #include <linux/spinlock.h> #include <linux/uaccess.h> +#include <linux/module.h> #include <mach/platform.h> #include <mach/regs-rtc.h> |