dpaa2-eth: remove unused priv parameter
authorIoana Ciornei <ioana.ciornei@nxp.com>
Fri, 12 Oct 2018 16:27:35 +0000 (16:27 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 16 Oct 2018 05:23:19 +0000 (22:23 -0700)
The priv parameter is never used in the build_linear_skb and
drain_channel function. Remove it from the function definitions.

Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c

index dedbd67cd3572fc83c3744c749bf7910408bdb13..119551e7145ca448790cbb1ddfdbf67273ddfeea 100644 (file)
@@ -98,8 +98,7 @@ free_buf:
 }
 
 /* Build a linear skb based on a single-buffer frame descriptor */
-static struct sk_buff *build_linear_skb(struct dpaa2_eth_priv *priv,
-                                       struct dpaa2_eth_channel *ch,
+static struct sk_buff *build_linear_skb(struct dpaa2_eth_channel *ch,
                                        const struct dpaa2_fd *fd,
                                        void *fd_vaddr)
 {
@@ -233,7 +232,7 @@ static void dpaa2_eth_rx(struct dpaa2_eth_priv *priv,
        percpu_extras = this_cpu_ptr(priv->percpu_extras);
 
        if (fd_format == dpaa2_fd_single) {
-               skb = build_linear_skb(priv, ch, fd, vaddr);
+               skb = build_linear_skb(ch, fd, vaddr);
        } else if (fd_format == dpaa2_fd_sg) {
                skb = build_frag_skb(priv, ch, buf_data);
                skb_free_frag(vaddr);
@@ -1085,8 +1084,7 @@ enable_err:
 /* The DPIO store must be empty when we call this,
  * at the end of every NAPI cycle.
  */
-static u32 drain_channel(struct dpaa2_eth_priv *priv,
-                        struct dpaa2_eth_channel *ch)
+static u32 drain_channel(struct dpaa2_eth_channel *ch)
 {
        u32 drained = 0, total = 0;
 
@@ -1107,7 +1105,7 @@ static u32 drain_ingress_frames(struct dpaa2_eth_priv *priv)
 
        for (i = 0; i < priv->num_channels; i++) {
                ch = priv->channel[i];
-               drained += drain_channel(priv, ch);
+               drained += drain_channel(ch);
        }
 
        return drained;