Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: mei: removing wd module parameters

wd module parameter is not needed now that driver is using watchdog core.

Signed-off-by: Oren Weil <oren.jer.weil@intel.com>
Acked-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Oren Weil and committed by
Greg Kroah-Hartman
214b99fd 2ad64ba8

-10
-10
drivers/staging/mei/wd.c
··· 26 26 #include "interface.h" 27 27 #include "mei.h" 28 28 29 - /* 30 - * MEI Watchdog Module Parameters 31 - */ 32 - static u16 watchdog_timeout = AMT_WD_DEFAULT_TIMEOUT; 33 - module_param(watchdog_timeout, ushort, 0); 34 - MODULE_PARM_DESC(watchdog_timeout, 35 - "Intel(R) AMT Watchdog timeout value in seconds. (default=" 36 - __MODULE_STRING(AMT_WD_DEFAULT_TIMEOUT) 37 - ", disable=0)"); 38 - 39 29 static const u8 mei_start_wd_params[] = { 0x02, 0x12, 0x13, 0x10 }; 40 30 static const u8 mei_stop_wd_params[] = { 0x02, 0x02, 0x14, 0x10 }; 41 31