lkml.org 
[lkml]   [2021]   [Dec]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH v2 32/50] wilc1000: introduce vmm_table_entry() helper function
Date
This simplifies fill_vmm_table() a bit more and will become even more
useful with the following patches.

Signed-off-by: David Mosberger-Tang <davidm@egauge.net>
---
drivers/net/wireless/microchip/wilc1000/wlan.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/drivers/net/wireless/microchip/wilc1000/wlan.c b/drivers/net/wireless/microchip/wilc1000/wlan.c
index cff70f7d38c89..5939ed5b2db68 100644
--- a/drivers/net/wireless/microchip/wilc1000/wlan.c
+++ b/drivers/net/wireless/microchip/wilc1000/wlan.c
@@ -629,6 +629,17 @@ static u32 tx_hdr_len(u8 type)
}
}

+static u32 vmm_table_entry(struct sk_buff *tqe, u32 vmm_sz)
+{
+ struct wilc_skb_tx_cb *tx_cb = WILC_SKB_TX_CB(tqe);
+ u32 entry;
+
+ entry = vmm_sz / 4;
+ if (tx_cb->type == WILC_CFG_PKT)
+ entry |= WILC_VMM_CFG_PKT;
+ return cpu_to_le32(entry);
+}
+
/**
* fill_vmm_table() - Fill VMM table with packets to be sent
* @wilc: Pointer to the wilc structure.
@@ -691,11 +702,7 @@ static int fill_vmm_table(const struct wilc *wilc,

if (sum + vmm_sz > WILC_TX_BUFF_SIZE)
goto out;
- vmm_table[i] = vmm_sz / 4;
- if (tx_cb->type == WILC_CFG_PKT)
- vmm_table[i] |= WILC_VMM_CFG_PKT;
-
- cpu_to_le32s(&vmm_table[i]);
+ vmm_table[i] = vmm_table_entry(tqe_q[ac], vmm_sz);
vmm_entries_ac[i] = ac;

i++;
--
2.25.1
\
 
 \ /
  Last update: 2021-12-23 02:17    [W:0.163 / U:0.160 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site