Skip to content

Commit

Permalink
watchdog: correct the name of the watchdog_core inlude file
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Wim Van Sebroeck committed May 30, 2012
1 parent 257f8c4 commit 6cfb5aa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/watchdog/watchdog_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <linux/watchdog.h> /* For watchdog specific items */
#include <linux/init.h> /* For __init/__exit/... */

#include "watchdog_dev.h" /* For watchdog_dev_register/... */
#include "watchdog_core.h" /* For watchdog_dev_register/... */

/**
* watchdog_register_device() - register a watchdog device
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion drivers/watchdog/watchdog_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6cfb5aa

Please sign in to comment.