diff options
author | Sun Lianwen <sunlw.fnst@cn.fujitsu.com> | 2018-05-05 11:29:16 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-07 23:38:15 -0400 |
commit | 3a443bd6dd7c43bf5763779309514bf3e7c1c3eb (patch) | |
tree | 5c21e3f5dba94e0decf4bdbf912571cf53fc7a7a | |
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>
-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); /** * v9fs_get_trans_by_name - get transport with the matching name - * @name: string identifying transport + * @s: string identifying transport * */ struct p9_trans_module *v9fs_get_trans_by_name(char *s) |