]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blobdiff - packages/ti/srvmgr/rpmsg_omx.h
Shared memory cache management
[ipc/ipcdev.git] / packages / ti / srvmgr / rpmsg_omx.h
index c27c51bdcf2471ae476825dde2ede60d36974f19..9c6b49e01e8a28587305172892e9d261234dfbd2 100644 (file)
@@ -98,7 +98,6 @@ enum omx_error_codes {
 /**
  * struct omx_msg_hdr - common header for all OMX messages
  * @type:type of message, see enum omx_msg_types
- * @flags:currently unused, should be zero
  * @len:length of msg payload (in bytes)
  * @data:the msg payload (depends on the message type)
  *
@@ -107,13 +106,12 @@ enum omx_error_codes {
  */
 struct omx_msg_hdr {
     UInt32 type;
-    UInt32 flags;
     UInt32 len;
     Char   data[1];
 };
 
 /* define this here because we cannot use data[0] in struct above */
-#define HDRSIZE (3 * sizeof(UInt))
+#define HDRSIZE (2 * sizeof(UInt))
 
 struct omx_connect_req {
     Char name[48];