1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 14:02:32 +03:00
openwrt-xburst/package/b43/src/pcmcia.h
nbd 900cb9fb85 add b43
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9293 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-10-13 22:41:37 +00:00

21 lines
317 B
C

#ifndef B43_PCMCIA_H_
#define B43_PCMCIA_H_
#ifdef CONFIG_B43_PCMCIA
int b43_pcmcia_init(void);
void b43_pcmcia_exit(void);
#else /* CONFIG_B43_PCMCIA */
static inline int b43_pcmcia_init(void)
{
return 0;
}
static inline void b43_pcmcia_exit(void)
{
}
#endif /* CONFIG_B43_PCMCIA */
#endif /* B43_PCMCIA_H_ */