diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2012-05-21 15:31:06 +0200 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-05-30 07:54:03 +0200 |
commit | 6cfb5aa836884bcd66e2c5d0a101e97ba78aaafd (patch) | |
tree | ba0dc48421be040e0577ea4ab8d1a3fa16aaa058 /drivers/watchdog/watchdog_dev.c | |
parent | 257f8c4aae392654d4ab846030b9f4518f16ed32 (diff) | |
download | linux-6cfb5aa836884bcd66e2c5d0a101e97ba78aaafd.tar.bz2 |
watchdog: correct the name of the watchdog_core inlude file
The watchdog_core include file should have been named
watchdog_core.h and not watchdog_dev.h . Correct this.
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/watchdog_dev.c')
-rw-r--r-- | drivers/watchdog/watchdog_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/watchdog_dev.c b/drivers/watchdog/watchdog_dev.c index 930cc7c87457..beaf9cb5541a 100644 --- a/drivers/watchdog/watchdog_dev.c +++ b/drivers/watchdog/watchdog_dev.c @@ -42,7 +42,7 @@ #include <linux/init.h> /* For __init/__exit/... */ #include <linux/uaccess.h> /* For copy_to_user/put_user/... */ -#include "watchdog_dev.h" +#include "watchdog_core.h" /* make sure we only register one /dev/watchdog device */ static unsigned long watchdog_dev_busy; |