Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / bcma / bcma_private.h
CommitLineData
8369ae33
RM
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
13struct bcma_bus;
14
15/* main.c */
16extern int bcma_bus_register(struct bcma_bus *bus);
17extern void bcma_bus_unregister(struct bcma_bus *bus);
18
19/* scan.c */
20int bcma_bus_scan(struct bcma_bus *bus);
21
27f18dc2
RM
22/* sprom.c */
23int bcma_sprom_get(struct bcma_bus *bus);
24
8369ae33
RM
25#ifdef CONFIG_BCMA_HOST_PCI
26/* host_pci.c */
27extern int __init bcma_host_pci_init(void);
28extern void __exit bcma_host_pci_exit(void);
29#endif /* CONFIG_BCMA_HOST_PCI */
30
31#endif