blob: 85f120a67cbe9265b302a4ed31eee6bc50b1e84c [file] [log] [blame]
Michael Buesche4d6b792007-09-18 15:39:42 -04001#ifndef B43_PCMCIA_H_
2#define B43_PCMCIA_H_
3
4#ifdef CONFIG_B43_PCMCIA
5
6int b43_pcmcia_init(void);
7void b43_pcmcia_exit(void);
8
9#else /* CONFIG_B43_PCMCIA */
10
11static inline int b43_pcmcia_init(void)
12{
13 return 0;
14}
15static inline void b43_pcmcia_exit(void)
16{
17}
18
19#endif /* CONFIG_B43_PCMCIA */
20#endif /* B43_PCMCIA_H_ */