mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 13:25:20 +02:00

This is only used internal to the driver, move it out of the public header and into the driver file. While we are here, this is not used as a bitwise, so drop that and make it a simple enum type. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
14 lines
272 B
C
14 lines
272 B
C
/* 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 */
|