File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 24
24
* This material is provided "AS-IS" and at no charge.
25
25
*/
26
26
27
- #include <linux/hrtimer.h>
27
+ #include <linux/cdev.h>
28
+ #include <linux/device.h>
29
+ #include <linux/hrtimer_types.h>
30
+ #include <linux/init.h>
28
31
#include <linux/kthread.h>
32
+ #include <linux/mutex_types.h>
33
+ #include <linux/types.h>
34
+ #include <linux/watchdog.h>
29
35
30
36
#define MAX_DOGS 32 /* Maximum number of watchdog devices */
31
37
Original file line number Diff line number Diff line change 7
7
#include <linux/slab.h>
8
8
#include <linux/spinlock.h>
9
9
#include <linux/string.h>
10
+ #include <linux/sysfs.h>
11
+ #include <linux/types.h>
10
12
#include <linux/watchdog.h>
11
13
12
14
#include "watchdog_core.h"
Original file line number Diff line number Diff line change 9
9
#ifndef _LINUX_WATCHDOG_H
10
10
#define _LINUX_WATCHDOG_H
11
11
12
-
13
12
#include <linux/bitops.h>
14
- #include <linux/cdev.h>
15
- #include <linux/device.h>
16
- #include <linux/kernel.h>
13
+ #include <linux/limits.h>
17
14
#include <linux/notifier.h>
15
+ #include <linux/printk.h>
16
+ #include <linux/types.h>
17
+
18
18
#include <uapi/linux/watchdog.h>
19
19
20
+ struct attribute_group ;
21
+ struct device ;
22
+ struct module ;
23
+
20
24
struct watchdog_ops ;
21
25
struct watchdog_device ;
22
26
struct watchdog_core_data ;
You can’t perform that action at this time.
0 commit comments