diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2019-04-23 17:48:31 +0200 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2019-05-05 21:10:34 +0200 |
commit | 0b468829c325026e0f2cec7f4e1b3ea2949f6d0d (patch) | |
tree | b08a8106d9a35476aba8af850ad678d6d4d04407 /drivers/watchdog | |
parent | watchdog: intel_scu: make it explicitly non-modular (diff) | |
download | linux-0b468829c325026e0f2cec7f4e1b3ea2949f6d0d.tar.xz linux-0b468829c325026e0f2cec7f4e1b3ea2949f6d0d.zip |
watchdog: rtd119x: drop unused module.h include
The Kconfig for this driver is:
config RTD119X_WATCHDOG
bool "Realtek RTD118x/RTD129x watchdog support"
...and hence it doesn't need to include module.h for anything.
There are no other signs of unused modular infrastructure.
Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-watchdog@vger.kernel.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/rtd119x_wdt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/watchdog/rtd119x_wdt.c b/drivers/watchdog/rtd119x_wdt.c index c4cb23d65218..834b94ff3f90 100644 --- a/drivers/watchdog/rtd119x_wdt.c +++ b/drivers/watchdog/rtd119x_wdt.c @@ -9,7 +9,6 @@ #include <linux/bitops.h> #include <linux/clk.h> #include <linux/io.h> -#include <linux/module.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/platform_device.h> |