summaryrefslogtreecommitdiff
path: root/include/net/9p/client.h
diff options
context:
space:
mode:
authorSripathi Kodi <sripathik@in.ibm.com>2010-03-08 17:33:04 (GMT)
committerEric Van Hensbergen <ericvh@gmail.com>2010-03-13 14:57:29 (GMT)
commit45bc21edb52fa71dbb1324c6f573aa880e95519d (patch)
treeadee2b59a562679241f874c978162739e1df78bb /include/net/9p/client.h
parentfae4528b2341f2ab0c86c191e24d9cdd93624c60 (diff)
downloadlinux-fsl-qoriq-45bc21edb52fa71dbb1324c6f573aa880e95519d.tar.xz
9p: Change the name of new protocol from 9p2010.L to 9p2000.L
This patch changes the name of the new 9P protocol from 9p2010.L to 9p2000.u. This is because we learnt that the name 9p2010 is already being used by others. Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'include/net/9p/client.h')
-rw-r--r--include/net/9p/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index 52e1fff..f076dfa 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -32,13 +32,13 @@
/** enum p9_proto_versions - 9P protocol versions
* @p9_proto_legacy: 9P Legacy mode, pre-9P2000.u
* @p9_proto_2000u: 9P2000.u extension
- * @p9_proto_2010L: 9P2010.L extension
+ * @p9_proto_2000L: 9P2000.L extension
*/
enum p9_proto_versions{
p9_proto_legacy = 0,
p9_proto_2000u = 1,
- p9_proto_2010L = 2,
+ p9_proto_2000L = 2,
};