]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
net: ethernet: ti: cpsw: simplify submit routine
authorIvan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Tue, 9 Aug 2016 23:22:32 +0000 (02:22 +0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Aug 2016 00:27:38 +0000 (17:27 -0700)
As second net dev is created only in case of dual_emac mode, port
number can be figured out in simpler way. Also no need to pass
redundant ndev struct.

Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw.c

index c51f34693eae40440604c4090e23dcf6201cd21e..8972bf6870ed4d7753852fe220609f659c3fb0cb 100644 (file)
@@ -1065,19 +1065,11 @@ static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
        return usage_count;
 }
 
-static inline int cpsw_tx_packet_submit(struct net_device *ndev,
-                       struct cpsw_priv *priv, struct sk_buff *skb)
+static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
+                                       struct sk_buff *skb)
 {
-       if (!priv->data.dual_emac)
-               return cpdma_chan_submit(priv->txch, skb, skb->data,
-                                 skb->len, 0);
-
-       if (ndev == cpsw_get_slave_ndev(priv, 0))
-               return cpdma_chan_submit(priv->txch, skb, skb->data,
-                                 skb->len, 1);
-       else
-               return cpdma_chan_submit(priv->txch, skb, skb->data,
-                                 skb->len, 2);
+       return cpdma_chan_submit(priv->txch, skb, skb->data, skb->len,
+                                priv->emac_port + priv->data.dual_emac);
 }
 
 static inline void cpsw_add_dual_emac_def_ale_entries(
@@ -1406,7 +1398,7 @@ static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
 
        skb_tx_timestamp(skb);
 
-       ret = cpsw_tx_packet_submit(ndev, priv, skb);
+       ret = cpsw_tx_packet_submit(priv, skb);
        if (unlikely(ret != 0)) {
                cpsw_err(priv, tx_err, "desc submit failed\n");
                goto fail;