mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-28 16:56:26 +00:00
6979e8be50
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 */
|