aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2012-05-21 09:31:06 -0400
committerWim Van Sebroeck <wim@iguana.be>2012-05-30 01:54:03 -0400
commit6cfb5aa836884bcd66e2c5d0a101e97ba78aaafd (patch)
treeba0dc48421be040e0577ea4ab8d1a3fa16aaa058 /drivers/watchdog
parent257f8c4aae392654d4ab846030b9f4518f16ed32 (diff)
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')
-rw-r--r--drivers/watchdog/watchdog_core.c2
-rw-r--r--drivers/watchdog/watchdog_core.h (renamed from drivers/watchdog/watchdog_dev.h)0
-rw-r--r--drivers/watchdog/watchdog_dev.c2
3 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/watchdog_core.c b/drivers/watchdog/watchdog_core.c
index 14d768bfa267..8598308278d3 100644
--- a/drivers/watchdog/watchdog_core.c
+++ b/drivers/watchdog/watchdog_core.c
@@ -35,7 +35,7 @@
35#include <linux/watchdog.h> /* For watchdog specific items */ 35#include <linux/watchdog.h> /* For watchdog specific items */
36#include <linux/init.h> /* For __init/__exit/... */ 36#include <linux/init.h> /* For __init/__exit/... */
37 37
38#include "watchdog_dev.h" /* For watchdog_dev_register/... */ 38#include "watchdog_core.h" /* For watchdog_dev_register/... */
39 39
40/** 40/**
41 * watchdog_register_device() - register a watchdog device 41 * watchdog_register_device() - register a watchdog device
diff --git a/drivers/watchdog/watchdog_dev.h b/drivers/watchdog/watchdog_core.h
index bc7612be25ce..bc7612be25ce 100644
--- a/drivers/watchdog/watchdog_dev.h
+++ b/drivers/watchdog/watchdog_core.h
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 @@
42#include <linux/init.h> /* For __init/__exit/... */ 42#include <linux/init.h> /* For __init/__exit/... */
43#include <linux/uaccess.h> /* For copy_to_user/put_user/... */ 43#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
44 44
45#include "watchdog_dev.h" 45#include "watchdog_core.h"
46 46
47/* make sure we only register one /dev/watchdog device */ 47/* make sure we only register one /dev/watchdog device */
48static unsigned long watchdog_dev_busy; 48static unsigned long watchdog_dev_busy;