brintos

brintos / linux-shallow public Read only

0
0
Text · 272 B · 3cc5c4e Raw
14 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * omap-mailbox: interprocessor communication module for OMAP4 */5 6#ifndef OMAP_MAILBOX_H7#define OMAP_MAILBOX_H8 9typedef uintptr_t mbox_msg_t;10 11#define omap_mbox_message(data) (u32)(mbox_msg_t)(data)12 13#endif /* OMAP_MAILBOX_H */14