From 56ff57b4cefd100cb1efc9e2fa1edf25a71a9ee0 Mon Sep 17 00:00:00 2001 From: Mark Tabry Date: Fri, 14 Jun 2019 10:32:12 -0700 Subject: [PATCH] Move START_SESSION definition to bottom of VmsMessageType. Bug: 130313799 Test: N/A Change-Id: Iaa1be8f047c58491970b5aaa0dfab4e418164dee --- automotive/vehicle/2.0/types.hal | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/automotive/vehicle/2.0/types.hal b/automotive/vehicle/2.0/types.hal index 6c76d7ba57..f6ebcdd7d0 100644 --- a/automotive/vehicle/2.0/types.hal +++ b/automotive/vehicle/2.0/types.hal @@ -3286,16 +3286,6 @@ enum DiagnosticFloatSensorIndex : int32_t { * the message is decoded. */ enum VmsMessageType : int32_t { - /** - * A notification indicating that the sender has been reset. - * - * The receiving party must reset its internal state and respond to the - * sender with a START_SESSION message as acknowledgement. - * - * This message type uses enum VmsStartSessionMessageIntegerValuesIndex. - */ - START_SESSION = 17, - /** * A request from the subscribers to the VMS service to subscribe to a layer. * @@ -3412,6 +3402,16 @@ enum VmsMessageType : int32_t { */ PUBLISHER_INFORMATION_RESPONSE = 16, + /** + * A notification indicating that the sender has been reset. + * + * The receiving party must reset its internal state and respond to the + * sender with a START_SESSION message as acknowledgement. + * + * This message type uses enum VmsStartSessionMessageIntegerValuesIndex. + */ + START_SESSION = 17, + LAST_VMS_MESSAGE_TYPE = START_SESSION, };