mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 09:04:39 +02:00
net: stmmac: make stmmac_set_gso_features() more readable
Make stmmac_set_gso_features() more readable by adding some whitespace and getting rid of the indentation. Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Link: https://patch.msgid.link/E1w7ptt-0000000Eatn-1ziK@rmk-PC.armlinux.org.uk Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
c04939cb98
commit
6ad0044428
|
|
@ -4389,13 +4389,19 @@ static void stmmac_set_gso_features(struct net_device *ndev)
|
|||
{
|
||||
struct stmmac_priv *priv = netdev_priv(ndev);
|
||||
|
||||
if ((priv->plat->flags & STMMAC_FLAG_TSO_EN) && (priv->dma_cap.tsoen)) {
|
||||
ndev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
|
||||
if (priv->plat->core_type == DWMAC_CORE_GMAC4)
|
||||
ndev->hw_features |= NETIF_F_GSO_UDP_L4;
|
||||
stmmac_set_gso_types(priv, true);
|
||||
dev_info(priv->device, "TSO feature enabled\n");
|
||||
}
|
||||
if (!(priv->plat->flags & STMMAC_FLAG_TSO_EN))
|
||||
return;
|
||||
|
||||
if (!priv->dma_cap.tsoen)
|
||||
return;
|
||||
|
||||
ndev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
|
||||
if (priv->plat->core_type == DWMAC_CORE_GMAC4)
|
||||
ndev->hw_features |= NETIF_F_GSO_UDP_L4;
|
||||
|
||||
stmmac_set_gso_types(priv, true);
|
||||
|
||||
dev_info(priv->device, "TSO feature enabled\n");
|
||||
}
|
||||
|
||||
static size_t stmmac_tso_header_size(struct sk_buff *skb)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user