xref: /OK3568_Linux_fs/kernel/include/linux/bcma/bcma_soc.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun #ifndef LINUX_BCMA_SOC_H_
3*4882a593Smuzhiyun #define LINUX_BCMA_SOC_H_
4*4882a593Smuzhiyun 
5*4882a593Smuzhiyun #include <linux/bcma/bcma.h>
6*4882a593Smuzhiyun 
7*4882a593Smuzhiyun struct bcma_soc {
8*4882a593Smuzhiyun 	struct bcma_bus bus;
9*4882a593Smuzhiyun 	struct device *dev;
10*4882a593Smuzhiyun };
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun int __init bcma_host_soc_register(struct bcma_soc *soc);
13*4882a593Smuzhiyun int __init bcma_host_soc_init(struct bcma_soc *soc);
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun int bcma_bus_register(struct bcma_bus *bus);
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #endif /* LINUX_BCMA_SOC_H_ */
18