summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/greybus_protocols.h
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-04-29 17:08:37 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2016-04-29 14:27:05 -0700
commit7adb32b429ce38bae39e277ae2cc37c93770104f (patch)
treea9a1790410ec4724728a11aa4f87abf552270b96 /drivers/staging/greybus/greybus_protocols.h
parenta2cf2e594626ce8c1e6944f6a44a7d481b84b82d (diff)
greybus: operation: fix definition of the invalid type
The invalid request type has been redefined as 0x7f. Also remove the redundant redefinition of the invalid type from the operation header. Note that operation type 0x00 has been repurposed for the new generic ping operation, which will be used to implement proper connection tear down. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/greybus_protocols.h')
-rw-r--r--drivers/staging/greybus/greybus_protocols.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/greybus/greybus_protocols.h b/drivers/staging/greybus/greybus_protocols.h
index 07988fb10e0d..f1e8b345a761 100644
--- a/drivers/staging/greybus/greybus_protocols.h
+++ b/drivers/staging/greybus/greybus_protocols.h
@@ -95,9 +95,9 @@ struct gb_operation_msg_hdr {
} __packed;
-/* Generic request numbers supported by all modules */
-#define GB_REQUEST_TYPE_INVALID 0x00
+/* Generic request types */
#define GB_REQUEST_TYPE_PROTOCOL_VERSION 0x01
+#define GB_REQUEST_TYPE_INVALID 0x7f
struct gb_protocol_version_request {
__u8 major;