mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 17:26:42 +09:00
staging: wilc1000: rename Ack_session_info struct variable
This patch rename Ack_session_info struct variable to ack_session_info to avoid CamelCase naming convention. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
eb59da3be9
commit
130a41f0c7
@@ -193,8 +193,8 @@ static int wilc_wlan_txq_add_to_head(struct txq_entry_t *tqe)
|
||||
u32 total_acks = 0, dropped_acks = 0;
|
||||
|
||||
#ifdef TCP_ACK_FILTER
|
||||
struct Ack_session_info;
|
||||
struct Ack_session_info {
|
||||
struct ack_session_info;
|
||||
struct ack_session_info {
|
||||
u32 Ack_seq_num;
|
||||
u32 Bigger_Ack_num;
|
||||
u16 src_port;
|
||||
@@ -208,14 +208,14 @@ typedef struct {
|
||||
struct txq_entry_t *txqe;
|
||||
} Pending_Acks_info_t;
|
||||
|
||||
struct Ack_session_info *Free_head;
|
||||
struct Ack_session_info *Alloc_head;
|
||||
struct ack_session_info *Free_head;
|
||||
struct ack_session_info *Alloc_head;
|
||||
|
||||
#define NOT_TCP_ACK (-1)
|
||||
|
||||
#define MAX_TCP_SESSION 25
|
||||
#define MAX_PENDING_ACKS 256
|
||||
struct Ack_session_info Acks_keep_track_info[2 * MAX_TCP_SESSION];
|
||||
struct ack_session_info Acks_keep_track_info[2 * MAX_TCP_SESSION];
|
||||
Pending_Acks_info_t Pending_Acks_info[MAX_PENDING_ACKS];
|
||||
|
||||
u32 PendingAcks_arrBase;
|
||||
|
||||
Reference in New Issue
Block a user