diff options
author | David S. Miller <davem@davemloft.net> | 2010-04-20 18:44:52 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-20 18:44:52 -0700 |
commit | e4fc9d15db72c8de7d4988e9f419b63b923e1d1d (patch) | |
tree | bc48416e90ed9362b54312811388c296fbc67cd1 /drivers/net/niu.c | |
parent | aa395145165cb06a0d0885221bbe0ce4a564391d (diff) | |
download | blackbird-op-linux-e4fc9d15db72c8de7d4988e9f419b63b923e1d1d.tar.gz blackbird-op-linux-e4fc9d15db72c8de7d4988e9f419b63b923e1d1d.zip |
niu: Enable GRO by default.
This was merely an oversight when I added the napi_gro_receive()
calls.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/niu.c')
-rw-r--r-- | drivers/net/niu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index ef940226ee22..493e25cf1014 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c @@ -9838,7 +9838,7 @@ static int __devinit niu_pci_init_one(struct pci_dev *pdev, } } - dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM); + dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_GRO); np->regs = pci_ioremap_bar(pdev, 0); if (!np->regs) { |