Fix the imagebuilder generation (does not mean it works with the recent changes)
[openwrt.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_ */
This page took 0.041845 seconds and 5 git commands to generate.