From: Wei Yongjun Date: Mon, 8 Aug 2016 13:52:41 +0000 (+0000) Subject: w1: fix timeout_us parameter description X-Git-Tag: v4.9-rc1~149^2~51 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=a46b195ca0d88134a6f60dc28532205075c70cff;p=cascardo%2Flinux.git w1: fix timeout_us parameter description Fix 'timeout_us' parameter description. Signed-off-by: Wei Yongjun Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c index bb34362e930a..e213c678bbfe 100644 --- a/drivers/w1/w1.c +++ b/drivers/w1/w1.c @@ -53,8 +53,8 @@ int w1_max_slave_ttl = 10; module_param_named(timeout, w1_timeout, int, 0); MODULE_PARM_DESC(timeout, "time in seconds between automatic slave searches"); module_param_named(timeout_us, w1_timeout_us, int, 0); -MODULE_PARM_DESC(timeout, "time in microseconds between automatic slave" - " searches"); +MODULE_PARM_DESC(timeout_us, + "time in microseconds between automatic slave searches"); /* A search stops when w1_max_slave_count devices have been found in that * search. The next search will start over and detect the same set of devices * on a static 1-wire bus. Memory is not allocated based on this number, just