mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 13:58:46 +00:00
6faf89a89f
This function is not used, remove this function. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
18 lines
402 B
C
18 lines
402 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)
|
|
|
|
typedef int __bitwise omap_mbox_irq_t;
|
|
#define IRQ_TX ((__force omap_mbox_irq_t) 1)
|
|
#define IRQ_RX ((__force omap_mbox_irq_t) 2)
|
|
|
|
#endif /* OMAP_MAILBOX_H */
|