Commit 6c36c1bd authored by Xingquan Liu's avatar Xingquan Liu Committed by Greg Kroah-Hartman

staging: vt6655: Rename variable apTD0Rings

Rename variable apTD0Rings to ap_td0_rings to fix checkpatch warning
Avoid CamelCase.
Signed-off-by: default avatarXingquan Liu <b1n@b1n.io>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240913012343.42579-1-b1n@b1n.ioSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ea0fca50
...@@ -388,8 +388,8 @@ void card_safe_reset_tx(struct vnt_private *priv) ...@@ -388,8 +388,8 @@ void card_safe_reset_tx(struct vnt_private *priv)
struct vnt_tx_desc *curr_td; struct vnt_tx_desc *curr_td;
/* initialize TD index */ /* initialize TD index */
priv->tail_td[0] = &priv->apTD0Rings[0]; priv->tail_td[0] = &priv->ap_td0_rings[0];
priv->apCurrTD[0] = &priv->apTD0Rings[0]; priv->apCurrTD[0] = &priv->ap_td0_rings[0];
priv->tail_td[1] = &priv->apTD1Rings[0]; priv->tail_td[1] = &priv->apTD1Rings[0];
priv->apCurrTD[1] = &priv->apTD1Rings[0]; priv->apCurrTD[1] = &priv->apTD1Rings[0];
...@@ -398,7 +398,7 @@ void card_safe_reset_tx(struct vnt_private *priv) ...@@ -398,7 +398,7 @@ void card_safe_reset_tx(struct vnt_private *priv)
priv->iTDUsed[uu] = 0; priv->iTDUsed[uu] = 0;
for (uu = 0; uu < priv->opts.tx_descs[0]; uu++) { for (uu = 0; uu < priv->opts.tx_descs[0]; uu++) {
curr_td = &priv->apTD0Rings[uu]; curr_td = &priv->ap_td0_rings[uu];
curr_td->td0.owner = OWNED_BY_HOST; curr_td->td0.owner = OWNED_BY_HOST;
/* init all Tx Packet pointer to NULL */ /* init all Tx Packet pointer to NULL */
} }
......
...@@ -135,7 +135,7 @@ struct vnt_private { ...@@ -135,7 +135,7 @@ struct vnt_private {
struct vnt_tx_desc *apCurrTD[TYPE_MAXTD]; struct vnt_tx_desc *apCurrTD[TYPE_MAXTD];
struct vnt_tx_desc *tail_td[TYPE_MAXTD]; struct vnt_tx_desc *tail_td[TYPE_MAXTD];
struct vnt_tx_desc *apTD0Rings; struct vnt_tx_desc *ap_td0_rings;
struct vnt_tx_desc *apTD1Rings; struct vnt_tx_desc *apTD1Rings;
struct vnt_rx_desc *aRD0Ring; struct vnt_rx_desc *aRD0Ring;
......
...@@ -550,7 +550,7 @@ static bool device_init_rings(struct vnt_private *priv) ...@@ -550,7 +550,7 @@ static bool device_init_rings(struct vnt_private *priv)
priv->opts.tx_descs[0] * sizeof(struct vnt_tx_desc); priv->opts.tx_descs[0] * sizeof(struct vnt_tx_desc);
/* vir_pool: pvoid type */ /* vir_pool: pvoid type */
priv->apTD0Rings = vir_pool priv->ap_td0_rings = vir_pool
+ priv->opts.rx_descs0 * sizeof(struct vnt_rx_desc) + priv->opts.rx_descs0 * sizeof(struct vnt_rx_desc)
+ priv->opts.rx_descs1 * sizeof(struct vnt_rx_desc); + priv->opts.rx_descs1 * sizeof(struct vnt_rx_desc);
...@@ -720,7 +720,7 @@ static int device_init_td0_ring(struct vnt_private *priv) ...@@ -720,7 +720,7 @@ static int device_init_td0_ring(struct vnt_private *priv)
curr = priv->td0_pool_dma; curr = priv->td0_pool_dma;
for (i = 0; i < priv->opts.tx_descs[0]; for (i = 0; i < priv->opts.tx_descs[0];
i++, curr += sizeof(struct vnt_tx_desc)) { i++, curr += sizeof(struct vnt_tx_desc)) {
desc = &priv->apTD0Rings[i]; desc = &priv->ap_td0_rings[i];
desc->td_info = kzalloc(sizeof(*desc->td_info), GFP_KERNEL); desc->td_info = kzalloc(sizeof(*desc->td_info), GFP_KERNEL);
if (!desc->td_info) { if (!desc->td_info) {
ret = -ENOMEM; ret = -ENOMEM;
...@@ -730,20 +730,20 @@ static int device_init_td0_ring(struct vnt_private *priv) ...@@ -730,20 +730,20 @@ static int device_init_td0_ring(struct vnt_private *priv)
desc->td_info->buf = priv->tx0_bufs + i * PKT_BUF_SZ; desc->td_info->buf = priv->tx0_bufs + i * PKT_BUF_SZ;
desc->td_info->buf_dma = priv->tx_bufs_dma0 + i * PKT_BUF_SZ; desc->td_info->buf_dma = priv->tx_bufs_dma0 + i * PKT_BUF_SZ;
desc->next = &(priv->apTD0Rings[(i + 1) % priv->opts.tx_descs[0]]); desc->next = &(priv->ap_td0_rings[(i + 1) % priv->opts.tx_descs[0]]);
desc->next_desc = cpu_to_le32(curr + desc->next_desc = cpu_to_le32(curr +
sizeof(struct vnt_tx_desc)); sizeof(struct vnt_tx_desc));
} }
if (i > 0) if (i > 0)
priv->apTD0Rings[i - 1].next_desc = cpu_to_le32(priv->td0_pool_dma); priv->ap_td0_rings[i - 1].next_desc = cpu_to_le32(priv->td0_pool_dma);
priv->tail_td[0] = priv->apCurrTD[0] = &priv->apTD0Rings[0]; priv->tail_td[0] = priv->apCurrTD[0] = &priv->ap_td0_rings[0];
return 0; return 0;
err_free_desc: err_free_desc:
while (i--) { while (i--) {
desc = &priv->apTD0Rings[i]; desc = &priv->ap_td0_rings[i];
kfree(desc->td_info); kfree(desc->td_info);
} }
...@@ -795,7 +795,7 @@ static void device_free_td0_ring(struct vnt_private *priv) ...@@ -795,7 +795,7 @@ static void device_free_td0_ring(struct vnt_private *priv)
int i; int i;
for (i = 0; i < priv->opts.tx_descs[0]; i++) { for (i = 0; i < priv->opts.tx_descs[0]; i++) {
struct vnt_tx_desc *desc = &priv->apTD0Rings[i]; struct vnt_tx_desc *desc = &priv->ap_td0_rings[i];
struct vnt_td_info *td_info = desc->td_info; struct vnt_td_info *td_info = desc->td_info;
dev_kfree_skb(td_info->skb); dev_kfree_skb(td_info->skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment