aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhayeswang <hayeswang@realtek.com>2015-02-05 22:30:49 -0500
committerDavid S. Miller <davem@davemloft.net>2015-02-08 01:46:25 -0500
commitccc39faf58113b33ed100b7c24d806538ac75df7 (patch)
tree312894ddb816e7754515872991f9d8633b2c04b7
parent53543db5d5e3e147c5e03cecb1495d7d50ca43e2 (diff)
r8152: adjust the line feed for hw_features
Keep NETIF_F_HW_VLAN_CTAG_RX and NETIF_F_HW_VLAN_CTAG_TX at the same line. Signed-off-by: Hayes Wang <hayeswang@realtek.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/usb/r8152.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c
index aade7b545f02..8bdd4773233e 100644
--- a/drivers/net/usb/r8152.c
+++ b/drivers/net/usb/r8152.c
@@ -3908,8 +3908,7 @@ static int rtl8152_probe(struct usb_interface *intf,
3908 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG | 3908 netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
3909 NETIF_F_TSO | NETIF_F_FRAGLIST | 3909 NETIF_F_TSO | NETIF_F_FRAGLIST |
3910 NETIF_F_IPV6_CSUM | NETIF_F_TSO6 | 3910 NETIF_F_IPV6_CSUM | NETIF_F_TSO6 |
3911 NETIF_F_HW_VLAN_CTAG_RX | 3911 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX;
3912 NETIF_F_HW_VLAN_CTAG_TX;
3913 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO | 3912 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
3914 NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | 3913 NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
3915 NETIF_F_IPV6_CSUM | NETIF_F_TSO6; 3914 NETIF_F_IPV6_CSUM | NETIF_F_TSO6;