bcma_soc.h 375 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef LINUX_BCMA_SOC_H_
  3. #define LINUX_BCMA_SOC_H_
  4. #include <linux/bcma/bcma.h>
  5. struct bcma_soc {
  6. struct bcma_bus bus;
  7. struct device *dev;
  8. };
  9. int __init bcma_host_soc_register(struct bcma_soc *soc);
  10. int __init bcma_host_soc_init(struct bcma_soc *soc);
  11. int bcma_bus_register(struct bcma_bus *bus);
  12. #endif /* LINUX_BCMA_SOC_H_ */