summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/svc.h
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-01-19 12:51:19 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2016-01-19 12:17:13 -0800
commit357de006573f0dbbd5e214dd3f2fe808157ec530 (patch)
tree0c9ae4a33f2b2161497b771e885163a4339ec194 /drivers/staging/greybus/svc.h
parent47a2e6769e8194da5570eaed7fc43f5abec18809 (diff)
greybus: svc: store protocol version
Store the "negotiated" protocol version to use in the svc state struct instead of the connection struct. The generic concept of a connection version is going away in favour of bundle-class versions. Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/svc.h')
-rw-r--r--drivers/staging/greybus/svc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/staging/greybus/svc.h b/drivers/staging/greybus/svc.h
index 8567615068a7..4abc5efad807 100644
--- a/drivers/staging/greybus/svc.h
+++ b/drivers/staging/greybus/svc.h
@@ -27,6 +27,9 @@ struct gb_svc {
u16 endo_id;
u8 ap_intf_id;
+
+ u8 protocol_major;
+ u8 protocol_minor;
};
#define to_gb_svc(d) container_of(d, struct gb_svc, d)