staging: wilc1000: rename Session_index member variable

This patch rename the Ack Session_index  variable to session_index
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:
Leo Kim 2015-11-06 11:12:49 +09:00 committed by Greg Kroah-Hartman
commit ea03f57b91

View file

@ -246,14 +246,14 @@ static inline int update_tcp_session(u32 index, u32 ack)
return 0;
}
static inline int add_tcp_pending_ack(u32 ack, u32 Session_index,
static inline int add_tcp_pending_ack(u32 ack, u32 session_index,
struct txq_entry_t *txqe)
{
total_acks++;
if (pending_acks < MAX_PENDING_ACKS) {
pending_acks_info[pending_base + pending_acks].ack_num = ack;
pending_acks_info[pending_base + pending_acks].txqe = txqe;
pending_acks_info[pending_base + pending_acks].session_index = Session_index;
pending_acks_info[pending_base + pending_acks].session_index = session_index;
txqe->tcp_PendingAck_index = pending_base + pending_acks;
pending_acks++;
} else {