greybus: update svc_msg_header fields and users to match spec
authorMatt Porter <mporter@linaro.org>
Thu, 18 Sep 2014 19:25:41 +0000 (15:25 -0400)
committerGreg Kroah-Hartman <greg@kroah.com>
Fri, 19 Sep 2014 03:06:08 +0000 (20:06 -0700)
commit710ecb0605350391e14a2d470397afb798b1fbf7
tree19c948038d46b0d4aa9609afa18a45bb4c88ea1e
parent772149b6df4648333c033d6b68e7a0b860dc22da
greybus: update svc_msg_header fields and users to match spec

The Greybus spec has been updated to clarify some of the original
intent of the SVC message definition. The svc_msg_header was:

struct svc_msg_header {
__u8 function;
__u8 message_type;
...
}

and is now

struct svc_msg_header {
__u8 function_id;
__u8 message_type;
...
}

to match the spec. The function_id carries enum svc_function_id values
and message_type is now clarified to be a session layer level field
that is simply "data" or "error".

Change all references of function type to function id. For now, don't
parse the message_type field but add the two allowable svc_msg_type enums.

Signed-off-by: Matt Porter <mporter@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/staging/greybus/ap.c
drivers/staging/greybus/svc_msg.h