diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2016-01-03 13:32:37 +0200 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2016-01-11 21:52:51 +0100 |
commit | 62cd1c40ce1c7c16835b599751c7a002eb5bbdf5 (patch) | |
tree | ab41149a0f2abdefde0d613fe4b44ffd1a994cc5 | |
parent | 9ca128a99fa56f006fe6c5801896aea5e00f8479 (diff) | |
download | op-kernel-dev-62cd1c40ce1c7c16835b599751c7a002eb5bbdf5.zip op-kernel-dev-62cd1c40ce1c7c16835b599751c7a002eb5bbdf5.tar.gz |
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>
-rw-r--r-- | include/linux/watchdog.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h index 850af04..aaabd47 100644 --- a/include/linux/watchdog.h +++ b/include/linux/watchdog.h @@ -47,8 +47,6 @@ struct watchdog_ops { int (*set_timeout)(struct watchdog_device *, unsigned int); unsigned int (*get_timeleft)(struct watchdog_device *); int (*restart)(struct watchdog_device *); - void (*ref)(struct watchdog_device *) __deprecated; - void (*unref)(struct watchdog_device *) __deprecated; long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long); }; |