diff options
author | Wei Yongjun <weiyj.lk@gmail.com> | 2016-08-08 09:52:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-31 07:56:05 -0400 |
commit | a46b195ca0d88134a6f60dc28532205075c70cff (patch) | |
tree | 42a21abcd8a70bf97e0489735a21cc74afb38d1f /drivers/w1 | |
parent | 368451ea748ce44cd4b879808735976eb2fded77 (diff) |
w1: fix timeout_us parameter description
Fix 'timeout_us' parameter description.
Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1')
-rw-r--r-- | drivers/w1/w1.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; | |||
53 | module_param_named(timeout, w1_timeout, int, 0); | 53 | module_param_named(timeout, w1_timeout, int, 0); |
54 | MODULE_PARM_DESC(timeout, "time in seconds between automatic slave searches"); | 54 | MODULE_PARM_DESC(timeout, "time in seconds between automatic slave searches"); |
55 | module_param_named(timeout_us, w1_timeout_us, int, 0); | 55 | module_param_named(timeout_us, w1_timeout_us, int, 0); |
56 | MODULE_PARM_DESC(timeout, "time in microseconds between automatic slave" | 56 | MODULE_PARM_DESC(timeout_us, |
57 | " searches"); | 57 | "time in microseconds between automatic slave searches"); |
58 | /* A search stops when w1_max_slave_count devices have been found in that | 58 | /* A search stops when w1_max_slave_count devices have been found in that |
59 | * search. The next search will start over and detect the same set of devices | 59 | * search. The next search will start over and detect the same set of devices |
60 | * on a static 1-wire bus. Memory is not allocated based on this number, just | 60 | * on a static 1-wire bus. Memory is not allocated based on this number, just |