Skip to content

Commit 71413cb

Browse files
authored
Merge pull request #72 from RanderWang/ipc_overflow
trace: Refine trace function in irq function
2 parents f9e6adf + 43e1271 commit 71413cb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ipc/apl-ipc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static void irq_handler(void *arg)
6868

6969
/* new message from host */
7070
if (dipct & IPC_DIPCT_BUSY) {
71-
trace_ipc("Nms");
71+
tracev_ipc("Nms");
7272

7373
/* mask Busy interrupt */
7474
ipc_write(IPC_DIPCCTL, ipc_read(IPC_DIPCCTL) & ~IPC_DIPCCTL_IPCTBIE);

src/ipc/cnl-ipc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static void irq_handler(void *arg)
6969

7070
/* new message from host */
7171
if (dipctdr & IPC_DIPCTDR_BUSY) {
72-
trace_ipc("Nms");
72+
tracev_ipc("Nms");
7373

7474
/* mask Busy interrupt */
7575
ipc_write(IPC_DIPCCTL, ipc_read(IPC_DIPCCTL) & ~IPC_DIPCCTL_IPCTBIE);

0 commit comments

Comments
 (0)