summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/pcmcia.h
blob: d8253d0c3e4896148b3a2b7f621e05863ab7a138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef B43_PCMCIA_H_
#define B43_PCMCIA_H_

#ifdef CPTCFG_B43_PCMCIA

int b43_pcmcia_init(void);
void b43_pcmcia_exit(void);

#else /* CPTCFG_B43_PCMCIA */

static inline int b43_pcmcia_init(void)
{
	return 0;
}
static inline void b43_pcmcia_exit(void)
{
}

#endif /* CPTCFG_B43_PCMCIA */
#endif /* B43_PCMCIA_H_ */