qcacmn: Replace A_UINT with appropriate types
There are instances of use of older A_UINT/A_INT. Replace all such instances with the qdf u_int*_t/int*_t. Change-Id: I7ce29b03f29a0d1a0cf87cfd3c846f4694da4c2a CR's-Fixed: 2210869
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
||||
*
|
||||
@@ -163,7 +163,7 @@ void epping_log_packet(epping_adapter_t *adapter,
|
||||
EPPING_HEADER *eppingHdr, int ret, const char *str);
|
||||
void epping_log_stats(epping_adapter_t *adapter, const char *str);
|
||||
void epping_set_kperf_flag(epping_adapter_t *adapter,
|
||||
HTC_ENDPOINT_ID eid, A_UINT8 kperf_flag);
|
||||
HTC_ENDPOINT_ID eid, uint8_t kperf_flag);
|
||||
|
||||
/* epping_tx signatures */
|
||||
void epping_tx_timer_expire(epping_adapter_t *adapter);
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
||||
*
|
||||
@@ -54,7 +54,7 @@
|
||||
|
||||
int epping_cookie_init(epping_context_t *pEpping_ctx)
|
||||
{
|
||||
A_UINT32 i, j;
|
||||
uint32_t i, j;
|
||||
|
||||
pEpping_ctx->cookie_list = NULL;
|
||||
pEpping_ctx->cookie_count = 0;
|
||||
@@ -203,7 +203,7 @@ void epping_log_stats(epping_adapter_t *adapter, const char *str)
|
||||
}
|
||||
|
||||
void epping_set_kperf_flag(epping_adapter_t *adapter,
|
||||
HTC_ENDPOINT_ID eid, A_UINT8 kperf_flag)
|
||||
HTC_ENDPOINT_ID eid, uint8_t kperf_flag)
|
||||
{
|
||||
adapter->pEpping_ctx->kperf_num_rx_recv[eid] = 0;
|
||||
adapter->pEpping_ctx->kperf_num_tx_acks[eid] = 0;
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2017 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
||||
*
|
||||
@@ -104,7 +104,7 @@ static int epping_tx_send_int(qdf_nbuf_t skb, epping_adapter_t *adapter)
|
||||
EPPING_HEADER *eppingHdr = (EPPING_HEADER *) qdf_nbuf_data(skb);
|
||||
HTC_ENDPOINT_ID eid = ENDPOINT_UNUSED;
|
||||
struct epping_cookie *cookie = NULL;
|
||||
A_UINT8 ac = 0;
|
||||
uint8_t ac = 0;
|
||||
QDF_STATUS ret = QDF_STATUS_SUCCESS;
|
||||
int skb_len;
|
||||
EPPING_HEADER tmpHdr = *eppingHdr;
|
||||
@@ -219,7 +219,7 @@ int epping_tx_send(qdf_nbuf_t skb, epping_adapter_t *adapter)
|
||||
{
|
||||
qdf_nbuf_t nodrop_skb;
|
||||
EPPING_HEADER *eppingHdr;
|
||||
A_UINT8 ac = 0;
|
||||
uint8_t ac = 0;
|
||||
|
||||
eppingHdr = (EPPING_HEADER *) qdf_nbuf_data(skb);
|
||||
|
||||
|
Reference in New Issue
Block a user