aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2016-01-03 06:32:37 -0500
committerWim Van Sebroeck <wim@iguana.be>2016-01-11 15:52:51 -0500
commit62cd1c40ce1c7c16835b599751c7a002eb5bbdf5 (patch)
treeab41149a0f2abdefde0d613fe4b44ffd1a994cc5 /include/linux
parent9ca128a99fa56f006fe6c5801896aea5e00f8479 (diff)
watchdog: kill unref/ref ops
ref/unref ops are not called at all so even marked them as deprecated is misleading, we need to just drop the API. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/watchdog.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h
index 850af04fe0c7..aaabd4703b46 100644
--- a/include/linux/watchdog.h
+++ b/include/linux/watchdog.h
@@ -47,8 +47,6 @@ struct watchdog_ops {
47 int (*set_timeout)(struct watchdog_device *, unsigned int); 47 int (*set_timeout)(struct watchdog_device *, unsigned int);
48 unsigned int (*get_timeleft)(struct watchdog_device *); 48 unsigned int (*get_timeleft)(struct watchdog_device *);
49 int (*restart)(struct watchdog_device *); 49 int (*restart)(struct watchdog_device *);
50 void (*ref)(struct watchdog_device *) __deprecated;
51 void (*unref)(struct watchdog_device *) __deprecated;
52 long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long); 50 long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long);
53}; 51};
54 52