summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/svc.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-04-29 17:08:36 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2016-04-29 14:27:05 -0700
commita2cf2e594626ce8c1e6944f6a44a7d481b84b82d (patch)
treed1e96f12876d1d8924efffb1631c3d011d355ade /drivers/staging/greybus/svc.c
parentb1f8bfea65183b4575e3dde64641f7340a3dfa38 (diff)
greybus: svc: define the version request
Define the SVC version request, which need not need to stay the same as the legacy version request. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/svc.c')
-rw-r--r--drivers/staging/greybus/svc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/greybus/svc.c b/drivers/staging/greybus/svc.c
index 78fe4dc37131..577e680f6a90 100644
--- a/drivers/staging/greybus/svc.c
+++ b/drivers/staging/greybus/svc.c
@@ -465,8 +465,8 @@ static int gb_svc_version_request(struct gb_operation *op)
{
struct gb_connection *connection = op->connection;
struct gb_svc *svc = gb_connection_get_data(connection);
- struct gb_protocol_version_request *request;
- struct gb_protocol_version_response *response;
+ struct gb_svc_version_request *request;
+ struct gb_svc_version_response *response;
if (op->request->payload_size < sizeof(*request)) {
dev_err(&svc->dev, "short version request (%zu < %zu)\n",
@@ -1192,7 +1192,7 @@ static int gb_svc_request_handler(struct gb_operation *op)
* need to protect 'state' for any races.
*/
switch (type) {
- case GB_REQUEST_TYPE_PROTOCOL_VERSION:
+ case GB_SVC_TYPE_PROTOCOL_VERSION:
if (svc->state != GB_SVC_STATE_RESET)
ret = -EINVAL;
break;
@@ -1213,7 +1213,7 @@ static int gb_svc_request_handler(struct gb_operation *op)
}
switch (type) {
- case GB_REQUEST_TYPE_PROTOCOL_VERSION:
+ case GB_SVC_TYPE_PROTOCOL_VERSION:
ret = gb_svc_version_request(op);
if (!ret)
svc->state = GB_SVC_STATE_PROTOCOL_VERSION;