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