mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 09:55:36 +00:00
c5ed1df781
Starting with kernel 3.19-rc1 early registration of bcma on MIPS is done a bit later, with memory allocator available. This allows us to simplify code by using standard bus scanning method. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
16 lines
315 B
C
16 lines
315 B
C
#ifndef LINUX_BCMA_SOC_H_
|
|
#define LINUX_BCMA_SOC_H_
|
|
|
|
#include <linux/bcma/bcma.h>
|
|
|
|
struct bcma_soc {
|
|
struct bcma_bus bus;
|
|
};
|
|
|
|
int __init bcma_host_soc_register(struct bcma_soc *soc);
|
|
int __init bcma_host_soc_init(struct bcma_soc *soc);
|
|
|
|
int bcma_bus_register(struct bcma_bus *bus);
|
|
|
|
#endif /* LINUX_BCMA_SOC_H_ */
|