add updated mac80211 - this no longer relies on patching includes in the kernel trees...
[openwrt/staging/yousong.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_ */