blob: f3c43519baa74449a8e6df2f0ac6320ddaa8d3f8 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* 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
7struct bcma_soc {
8 struct bcma_bus bus;
David Brazdil0f672f62019-12-10 10:32:29 +00009 struct device *dev;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010};
11
12int __init bcma_host_soc_register(struct bcma_soc *soc);
13int __init bcma_host_soc_init(struct bcma_soc *soc);
14
15int bcma_bus_register(struct bcma_bus *bus);
16
17#endif /* LINUX_BCMA_SOC_H_ */