mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
staging: rtl8192u: Remove typedef for struct _IbssParms
-Avoid typedefs for structure types to maintain kernel coding style. -Remove typedefs IbssParms and *PIbssParms of struct _IbssParms. -Change Structure name _IbssParms to ibss_parms to maintain Linux kernel Coding Style. -Replace occurence of IbssParms to struct ibss_parms. Signed-off-by: Bhanusree Pola <bhanusreemahesh@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bc6b124b68
commit
d83908ed0f
@ -1506,9 +1506,9 @@ typedef enum _RT_JOIN_ACTION {
|
||||
RT_NO_ACTION = 4,
|
||||
} RT_JOIN_ACTION;
|
||||
|
||||
typedef struct _IbssParms {
|
||||
struct ibss_parms {
|
||||
u16 atimWin;
|
||||
} IbssParms, *PIbssParms;
|
||||
};
|
||||
#define MAX_NUM_RATES 264 // Max num of support rates element: 8, Max num of ext. support rate: 255. 061122, by rcnjko.
|
||||
|
||||
// RF state.
|
||||
@ -1554,7 +1554,7 @@ typedef struct _RT_POWER_SAVE_CONTROL {
|
||||
struct octet_string tmpSuppRateSet;
|
||||
u8 tmpSuppRateBuf[MAX_NUM_RATES];
|
||||
bool bTmpSuppRate;
|
||||
IbssParms tmpIbpm;
|
||||
struct ibss_parms tmpIbpm;
|
||||
bool bTmpIbpm;
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user