Rev 2626 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2626 | Rev 3761 | ||
|---|---|---|---|
| Line 51... | Line 51... | ||
| 51 | 51 | ||
| 52 | /* |
52 | /* |
| 53 | * User friendly wrappers for ipc_irq_send_msg(). They are in the form |
53 | * User friendly wrappers for ipc_irq_send_msg(). They are in the form |
| 54 | * ipc_irq_send_msg_m(), where m is the number of payload arguments. |
54 | * ipc_irq_send_msg_m(), where m is the number of payload arguments. |
| 55 | */ |
55 | */ |
| - | 56 | #define ipc_irq_send_msg_0(irq) \ |
|
| - | 57 | ipc_irq_send_msg((irq), 0, 0, 0, 0, 0) |
|
| 56 | #define ipc_irq_send_msg_1(irq, a1) \ |
58 | #define ipc_irq_send_msg_1(irq, a1) \ |
| 57 | ipc_irq_send_msg((irq), (a1), 0, 0, 0, 0) |
59 | ipc_irq_send_msg((irq), (a1), 0, 0, 0, 0) |
| 58 | #define ipc_irq_send_msg_2(irq, a1, a2) \ |
60 | #define ipc_irq_send_msg_2(irq, a1, a2) \ |
| 59 | ipc_irq_send_msg((irq), (a1), (a2), 0, 0, 0) |
61 | ipc_irq_send_msg((irq), (a1), (a2), 0, 0, 0) |
| 60 | #define ipc_irq_send_msg_3(irq, a1, a2, a3) \ |
62 | #define ipc_irq_send_msg_3(irq, a1, a2, a3) \ |