1007832103
This patch unifies the namespace of variables, functions defines and structures. It does: - rename libertas_XXX to lbs_XXX - rename LIBERTAS_XXX to lbs_XXX - rename wlan_XXX to lbs_XXX - rename WLAN_XXX to LBS_XXX (but only those that were defined in libertas-local *.h files, e.g. not defines from net/ieee80211.h) While passing, I fixed some checkpatch.pl errors too. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Acked-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
24 lines
406 B
C
24 lines
406 B
C
/**
|
|
* This file contains definition for IOCTL call.
|
|
*/
|
|
#ifndef _LBS_WEXT_H_
|
|
#define _LBS_WEXT_H_
|
|
|
|
/** lbs_ioctl_regrdwr */
|
|
struct lbs_ioctl_regrdwr {
|
|
/** Which register to access */
|
|
u16 whichreg;
|
|
/** Read or Write */
|
|
u16 action;
|
|
u32 offset;
|
|
u16 NOB;
|
|
u32 value;
|
|
};
|
|
|
|
#define LBS_MONITOR_OFF 0
|
|
|
|
extern struct iw_handler_def lbs_handler_def;
|
|
extern struct iw_handler_def mesh_handler_def;
|
|
|
|
#endif
|