Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b7a3449 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "net: rmnet_data: Fix incorrect flags for rmnet_data devices"

parents 30afbb35 1f998312
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -594,7 +594,7 @@ int rmnet_vnd_create_dev(int id, struct net_device **new_device,
		dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
			NETIF_F_IPV6_UDP_CSUM;
		/* Configuring GRO on rmnet_data interfaces */
		dev->hw_features = NETIF_F_GRO;
		dev->hw_features |= NETIF_F_GRO;
	}

	rc = register_netdevice(dev);