[RAMEN9610-20413][9610] wlbt: SCSC Driver version 10.6.1.0
[GitHub/MotorolaMobilityLLC/kernel-slsi.git] / drivers / misc / samsung / scsc / mxmgmt_transport_format.h
1 /****************************************************************************
2 *
3 * Copyright (c) 2014 - 2016 Samsung Electronics Co., Ltd. All rights reserved
4 *
5 ****************************************************************************/
6
7 #ifndef MXMGR_TRANSPORT_FORMAT_H__
8 #define MXMGR_TRANSPORT_FORMAT_H__
9
10 #define MXMGR_MESSAGE_PAYLOAD_SIZE 127
11
12 /**
13 * Layout of messages across the manager transport streams.
14 *
15 * HERE: This is a dummy definition and will be replaced
16 * once more of the service management infrastructure is completed.
17 */
18 struct mxmgr_message {
19 uint8_t channel_id; /* Channel ID from mxmgr_channels */
20 uint8_t payload[MXMGR_MESSAGE_PAYLOAD_SIZE]; /* Message content to store in the transport stream - user defined format */
21 } __packed;
22
23 #endif /* MXMGR_TRANSPORT_FORMAT_H__ */