Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef LINUX_BCMA_SOC_H_ |
| 3 | #define LINUX_BCMA_SOC_H_ |
| 4 | |
| 5 | #include <linux/bcma/bcma.h> |
| 6 | |
| 7 | struct bcma_soc { |
| 8 | struct bcma_bus bus; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 9 | struct device *dev; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 10 | }; |
| 11 | |
| 12 | int __init bcma_host_soc_register(struct bcma_soc *soc); |
| 13 | int __init bcma_host_soc_init(struct bcma_soc *soc); |
| 14 | |
| 15 | int bcma_bus_register(struct bcma_bus *bus); |
| 16 | |
| 17 | #endif /* LINUX_BCMA_SOC_H_ */ |