|
@@ -926,7 +926,7 @@ static int ipa_get_eth_inst_stats(unsigned long arg)
|
|
|
IPA_CLIENT_AQC_ETHERNET_CONS;
|
|
|
#if IPA_ETH_API_VER >= 2
|
|
|
/* Get the client pipe info[0] from the allocation info context only if it is NTN3 */
|
|
|
- if ((instance_ptr->eth_mode == IPA_ETH_CLIENT_NTN3)) {
|
|
|
+ if (instance_ptr->eth_mode == IPA_ETH_CLIENT_NTN3) {
|
|
|
tx_instance_ptr_local->tx_client =
|
|
|
ipa_lnx_agent_ctx.alloc_info.eth_inst_info[
|
|
|
i].pipes_client_type[0];
|
|
@@ -1025,7 +1025,7 @@ static int ipa_get_eth_inst_stats(unsigned long arg)
|
|
|
IPA_CLIENT_AQC_ETHERNET_PROD;
|
|
|
#if IPA_ETH_API_VER >= 2
|
|
|
/* Get the client pipe info[1] from the allocation info context only if it is NTN3 */
|
|
|
- if ((instance_ptr->eth_mode == IPA_ETH_CLIENT_NTN3)) {
|
|
|
+ if (instance_ptr->eth_mode == IPA_ETH_CLIENT_NTN3) {
|
|
|
rx_instance_ptr_local->rx_client =
|
|
|
ipa_lnx_agent_ctx.alloc_info.eth_inst_info[
|
|
|
i].pipes_client_type[1];
|