summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Nelson <sam.nelson@ti.com>2016-05-24 15:40:38 -0400
committerAngela Stegmaier <angelabaker@ti.com>2016-05-25 15:41:05 -0500
commitae13735e0baed6edff5f61687eb017141e2a7c7a (patch)
treefe50d02b6cfcc85f1543938f580cf4a3c6f5acb7
parent12bd4fba06d4ba99384d7e79f5abb0b675dc8704 (diff)
downloadipc-ae13735e0baed6edff5f61687eb017141e2a7c7a.tar.gz
linux/ipc: Replace error message with debug print for GateMP Start3.43.00.00_eng
Error print was misleading when this is expected in case the GateMP not supported in the system. Replaced with Verbose print Signed-off-by: Sam Nelson <sam.nelson@ti.com>
-rw-r--r--linux/src/api/Ipc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/src/api/Ipc.c b/linux/src/api/Ipc.c
index 90725d3..d963da7 100644
--- a/linux/src/api/Ipc.c
+++ b/linux/src/api/Ipc.c
@@ -273,7 +273,9 @@ Int Ipc_start(Void)
status = GateMP_start();
if (status < 0) {
if (status == GateMP_E_NOTFOUND) {
- fprintf(stderr, "Ipc_start: GateMP_start failed: not found %d\n",
+ /* Ignore if Gate not found */
+ PRINTVERBOSE1(
+ "Ipc_start: GateMP_start: gate not found, ignored %d\n",
status);
status = 0;
} else {