e6d5788b7b329c71f5f251ffe1e55584796407f1
[openwrt/staging/florian.git] / package / bcm43xx-mac80211 / src / bcm43xx / bcm43xx_pcmcia.h
1 #ifndef BCM43xx_PCMCIA_H_
2 #define BCM43xx_PCMCIA_H_
3
4 #ifdef CONFIG_BCM43XX_MAC80211_PCMCIA
5
6 int bcm43xx_pcmcia_init(void);
7 void bcm43xx_pcmcia_exit(void);
8
9 #else /* CONFIG_BCM43XX_MAC80211_PCMCIA */
10
11 static inline
12 int bcm43xx_pcmcia_init(void)
13 {
14 return 0;
15 }
16 static inline
17 void bcm43xx_pcmcia_exit(void)
18 {
19 }
20
21 #endif /* CONFIG_BCM43XX_MAC80211_PCMCIA */
22 #endif /* BCM43xx_PCMCIA_H_ */