summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamsey Harris <ramsey@ti.com>2015-02-26 11:04:11 -0800
committerRobert Tivy <rtivy@ti.com>2015-02-26 11:33:03 -0800
commitebd30daf7e18ce109153e1cce6a6fb157ed36e22 (patch)
tree74734ef9797aadf097796340fefaee453afa3474
parent0f04969852bdb48d123ab873419a6d8749b1b91e (diff)
downloadipc-ebd30daf7e18ce109153e1cce6a6fb157ed36e22.tar.gz
Reduced MessageQ port offset from 0x800 to 0x80
The larger port offset was causing a failure in the Linux driver (rpmsg_proto I think) which caused a back-to-back run of any IPC application to fail. RPMessage has a maximum reserved port of 100. Message queue port numbers will still be above the reserved ports.
-rw-r--r--packages/ti/ipc/MessageQ.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ti/ipc/MessageQ.h b/packages/ti/ipc/MessageQ.h
index 2baa868..8efaa2c 100644
--- a/packages/ti/ipc/MessageQ.h
+++ b/packages/ti/ipc/MessageQ.h
@@ -289,7 +289,7 @@ extern "C" {
* collisions with reserved port numbers which are typically in the
* same range as the queue indexes.
*/
-#define MessageQ_PORTOFFSET (0x800)
+#define MessageQ_PORTOFFSET (0x80)
/** @endcond INTERNAL */
/*!