diff options
author | Sun Lianwen <sunlw.fnst@cn.fujitsu.com> | 2018-05-04 23:29:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-07 23:38:15 -0400 |
commit | 3a443bd6dd7c43bf5763779309514bf3e7c1c3eb (patch) | |
tree | 5c21e3f5dba94e0decf4bdbf912571cf53fc7a7a /net/9p | |
parent | 84a2fba2cb5e90b3b6f6e72676d8e3918725d9e5 (diff) |
net/9p: correct the variable name in v9fs_get_trans_by_name() comment
The v9fs_get_trans_by_name(char *s) variable name is not "name" but "s".
Signed-off-by: Sun Lianwen <sunlw.fnst@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/9p')
-rw-r--r-- | net/9p/mod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/mod.c b/net/9p/mod.c index 6ab36aea7727..eb9777f05755 100644 --- a/net/9p/mod.c +++ b/net/9p/mod.c | |||
@@ -104,7 +104,7 @@ EXPORT_SYMBOL(v9fs_unregister_trans); | |||
104 | 104 | ||
105 | /** | 105 | /** |
106 | * v9fs_get_trans_by_name - get transport with the matching name | 106 | * v9fs_get_trans_by_name - get transport with the matching name |
107 | * @name: string identifying transport | 107 | * @s: string identifying transport |
108 | * | 108 | * |
109 | */ | 109 | */ |
110 | struct p9_trans_module *v9fs_get_trans_by_name(char *s) | 110 | struct p9_trans_module *v9fs_get_trans_by_name(char *s) |