blob: e6d5788b7b329c71f5f251ffe1e55584796407f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef BCM43xx_PCMCIA_H_
#define BCM43xx_PCMCIA_H_
#ifdef CONFIG_BCM43XX_MAC80211_PCMCIA
int bcm43xx_pcmcia_init(void);
void bcm43xx_pcmcia_exit(void);
#else /* CONFIG_BCM43XX_MAC80211_PCMCIA */
static inline
int bcm43xx_pcmcia_init(void)
{
return 0;
}
static inline
void bcm43xx_pcmcia_exit(void)
{
}
#endif /* CONFIG_BCM43XX_MAC80211_PCMCIA */
#endif /* BCM43xx_PCMCIA_H_ */
|