Commit | Line | Data |
---|---|---|
2ad51576 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
c869c75c SA |
2 | /* |
3 | * omap-mailbox: interprocessor communication module for OMAP | |
c869c75c SA |
4 | */ |
5 | ||
6 | #ifndef OMAP_MAILBOX_H | |
7 | #define OMAP_MAILBOX_H | |
8 | ||
9c1f2a5d SA |
9 | typedef uintptr_t mbox_msg_t; |
10 | ||
11 | #define omap_mbox_message(data) (u32)(mbox_msg_t)(data) | |
c869c75c | 12 | |
c869c75c | 13 | #endif /* OMAP_MAILBOX_H */ |