soc: rockchip: amend rk3368-mbox related *.h to soc/rockchip
[firefly-linux-kernel-4.4.55.git] / include / soc / rockchip / rk3368-mailbox.h
1 /*
2  * Copyright (C) 2017, Fuzhou Rockchip Electronics Co., Ltd
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  */
9
10 #ifndef __RK3368_MAILBOX_H__
11 #define __RK3368_MAILBOX_H__
12
13 struct rk3368_mbox_msg {
14         u32 cmd;
15         int tx_size;
16         void *tx_buf;
17         int rx_size;
18         void *rx_buf;
19         void *cl_data;
20 };
21
22 #endif /* __RK3368_MAILBOX_H__ */