| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 1 | #ifndef LINUX_BCMA_PRIVATE_H_ | 
 | 2 | #define LINUX_BCMA_PRIVATE_H_ | 
 | 3 |  | 
 | 4 | #ifndef pr_fmt | 
 | 5 | #define pr_fmt(fmt)		KBUILD_MODNAME ": " fmt | 
 | 6 | #endif | 
 | 7 |  | 
 | 8 | #include <linux/bcma/bcma.h> | 
 | 9 | #include <linux/delay.h> | 
 | 10 |  | 
 | 11 | #define BCMA_CORE_SIZE		0x1000 | 
 | 12 |  | 
 | 13 | struct bcma_bus; | 
 | 14 |  | 
 | 15 | /* main.c */ | 
| Rafał Miłecki | 440ca98 | 2011-06-18 01:01:59 +0200 | [diff] [blame] | 16 | int bcma_bus_register(struct bcma_bus *bus); | 
 | 17 | void bcma_bus_unregister(struct bcma_bus *bus); | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 18 |  | 
 | 19 | /* scan.c */ | 
 | 20 | int bcma_bus_scan(struct bcma_bus *bus); | 
 | 21 |  | 
| Rafał Miłecki | 27f18dc | 2011-06-02 02:08:51 +0200 | [diff] [blame] | 22 | /* sprom.c */ | 
 | 23 | int bcma_sprom_get(struct bcma_bus *bus); | 
 | 24 |  | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 25 | #ifdef CONFIG_BCMA_HOST_PCI | 
 | 26 | /* host_pci.c */ | 
 | 27 | extern int __init bcma_host_pci_init(void); | 
 | 28 | extern void __exit bcma_host_pci_exit(void); | 
 | 29 | #endif /* CONFIG_BCMA_HOST_PCI */ | 
 | 30 |  | 
| Rafał Miłecki | 9352f69 | 2011-07-05 19:48:26 +0200 | [diff] [blame] | 31 | #ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE | 
 | 32 | void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc); | 
 | 33 | #endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */ | 
 | 34 |  | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 35 | #endif |