aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/9p/client.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/9p/client.c b/net/9p/client.c
index a037a29f3f0e..20a33194d66e 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -71,9 +71,10 @@ inline int p9_is_proto_dotu(struct p9_client *clnt)
71EXPORT_SYMBOL(p9_is_proto_dotu); 71EXPORT_SYMBOL(p9_is_proto_dotu);
72 72
73/* Interpret mount option for protocol version */ 73/* Interpret mount option for protocol version */
74static unsigned char get_protocol_version(const substring_t *name) 74static int get_protocol_version(const substring_t *name)
75{ 75{
76 unsigned char version = -EINVAL; 76 int version = -EINVAL;
77
77 if (!strncmp("9p2000", name->from, name->to-name->from)) { 78 if (!strncmp("9p2000", name->from, name->to-name->from)) {
78 version = p9_proto_legacy; 79 version = p9_proto_legacy;
79 P9_DPRINTK(P9_DEBUG_9P, "Protocol version: Legacy\n"); 80 P9_DPRINTK(P9_DEBUG_9P, "Protocol version: Legacy\n");