forked from Minki/linux
876c9d3aeb
Add the Marvell Libertas 8388 802.11 USB driver. Signed-off-by: Marcelo Tosatti <marcelo@kvack.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
14 lines
250 B
C
14 lines
250 B
C
/**
|
|
* This header file contains FW interface related definitions.
|
|
*/
|
|
#ifndef _WLAN_FW_H_
|
|
#define _WLAN_FW_H_
|
|
|
|
#ifndef DEV_NAME_LEN
|
|
#define DEV_NAME_LEN 32
|
|
#endif
|
|
|
|
int libertas_init_fw(wlan_private * priv);
|
|
|
|
#endif /* _WLAN_FW_H_ */
|