printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / armada-37xx-rwtm-mailbox.h
blobef4bd705eb6570200dbc6011ab5387ba1429883b
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * rWTM BIU Mailbox driver for Armada 37xx
5 * Author: Marek BehĂșn <kabel@kernel.org>
6 */
8 #ifndef _LINUX_ARMADA_37XX_RWTM_MAILBOX_H_
9 #define _LINUX_ARMADA_37XX_RWTM_MAILBOX_H_
11 #include <linux/types.h>
13 struct armada_37xx_rwtm_tx_msg {
14 u16 command;
15 u32 args[16];
18 struct armada_37xx_rwtm_rx_msg {
19 u32 retval;
20 u32 status[16];
23 #endif /* _LINUX_ARMADA_37XX_RWTM_MAILBOX_H_ */