aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/ethernet/ibm/Kconfig5
-rw-r--r--drivers/net/ethernet/ibm/ehea/ehea_main.c2
2 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/ethernet/ibm/Kconfig b/drivers/net/ethernet/ibm/Kconfig
index b9773d229192..6529d31595a7 100644
--- a/drivers/net/ethernet/ibm/Kconfig
+++ b/drivers/net/ethernet/ibm/Kconfig
@@ -6,7 +6,7 @@ config NET_VENDOR_IBM
6 bool "IBM devices" 6 bool "IBM devices"
7 default y 7 default y
8 depends on MCA || PPC_PSERIES || PPC_PSERIES || PPC_DCR || \ 8 depends on MCA || PPC_PSERIES || PPC_PSERIES || PPC_DCR || \
9 (IBMEBUS && INET && SPARSEMEM) 9 (IBMEBUS && SPARSEMEM)
10 ---help--- 10 ---help---
11 If you have a network (Ethernet) card belonging to this class, say Y 11 If you have a network (Ethernet) card belonging to this class, say Y
12 and read the Ethernet-HOWTO, available from 12 and read the Ethernet-HOWTO, available from
@@ -33,8 +33,7 @@ source "drivers/net/ethernet/ibm/emac/Kconfig"
33 33
34config EHEA 34config EHEA
35 tristate "eHEA Ethernet support" 35 tristate "eHEA Ethernet support"
36 depends on IBMEBUS && INET && SPARSEMEM 36 depends on IBMEBUS && SPARSEMEM
37 select INET_LRO
38 ---help--- 37 ---help---
39 This driver supports the IBM pSeries eHEA ethernet adapter. 38 This driver supports the IBM pSeries eHEA ethernet adapter.
40 39
diff --git a/drivers/net/ethernet/ibm/ehea/ehea_main.c b/drivers/net/ethernet/ibm/ehea/ehea_main.c
index f4d2da0db1b1..09faf333e941 100644
--- a/drivers/net/ethernet/ibm/ehea/ehea_main.c
+++ b/drivers/net/ethernet/ibm/ehea/ehea_main.c
@@ -3028,7 +3028,7 @@ static struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter,
3028 ehea_set_ethtool_ops(dev); 3028 ehea_set_ethtool_ops(dev);
3029 3029
3030 dev->hw_features = NETIF_F_SG | NETIF_F_TSO 3030 dev->hw_features = NETIF_F_SG | NETIF_F_TSO
3031 | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | NETIF_F_LRO; 3031 | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX;
3032 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO 3032 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO
3033 | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX 3033 | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX
3034 | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER 3034 | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER