OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 3
Line 7... Line 7...
7   7  
8 Signed-off-by: Felix Fietkau <nbd@nbd.name> 8 Signed-off-by: Felix Fietkau <nbd@nbd.name>
9 --- 9 ---
10 --- a/drivers/net/ethernet/marvell/mvneta.c 10 --- a/drivers/net/ethernet/marvell/mvneta.c
11 +++ b/drivers/net/ethernet/marvell/mvneta.c 11 +++ b/drivers/net/ethernet/marvell/mvneta.c
12 @@ -3961,6 +3961,15 @@ static int mvneta_ethtool_set_wol(struct 12 @@ -3962,6 +3962,15 @@ static int mvneta_ethtool_set_wol(struct
13 return ret; 13 return ret;
Line 14... Line 14...
14 } 14 }
15 15
Line 23... Line 23...
23 +} 23 +}
24 + 24 +
25 static const struct net_device_ops mvneta_netdev_ops = { 25 static const struct net_device_ops mvneta_netdev_ops = {
26 .ndo_open = mvneta_open, 26 .ndo_open = mvneta_open,
27 .ndo_stop = mvneta_stop, 27 .ndo_stop = mvneta_stop,
28 @@ -3971,6 +3980,7 @@ static const struct net_device_ops mvnet 28 @@ -3972,6 +3981,7 @@ static const struct net_device_ops mvnet
29 .ndo_fix_features = mvneta_fix_features, 29 .ndo_fix_features = mvneta_fix_features,
30 .ndo_get_stats64 = mvneta_get_stats64, 30 .ndo_get_stats64 = mvneta_get_stats64,
31 .ndo_do_ioctl = mvneta_ioctl, 31 .ndo_do_ioctl = mvneta_ioctl,
32 + .ndo_select_queue = mvneta_select_queue, 32 + .ndo_select_queue = mvneta_select_queue,
33 }; 33 };