ramips: disable ethernet checksum offloads for mt7621, they are broken
[openwrt/svn-archive/archive.git] / target / linux / ramips / files / drivers / net / ethernet / ralink / soc_mt7620.c
index ba1a170abcccd49411f4c466d0c99f78e79b9c0d..60666e7886538f548dae896a9ea7db73ab988be9 100644 (file)
@@ -192,6 +192,15 @@ static void mt7620_init_data(struct fe_soc_data *data,
                        NETIF_F_IPV6_CSUM;
 }
 
+static void mt7621_init_data(struct fe_soc_data *data,
+               struct net_device *netdev)
+{
+       struct fe_priv *priv = netdev_priv(netdev);
+
+       priv->flags = FE_FLAG_PADDING_64B;
+       netdev->hw_features = NETIF_F_HW_VLAN_CTAG_TX;
+}
+
 static void mt7621_set_mac(struct fe_priv *priv, unsigned char *mac)
 {
        unsigned long flags;
@@ -228,7 +237,7 @@ static struct fe_soc_data mt7620_data = {
 
 static struct fe_soc_data mt7621_data = {
        .mac = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55 },
-       .init_data = mt7620_init_data,
+       .init_data = mt7621_init_data,
        .reset_fe = mt7621_fe_reset,
        .set_mac = mt7621_set_mac,
        .fwd_config = mt7621_fwd_config,