Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: Documentation/networking/ip-sysctl.txt drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c Both conflicts were simply overlapping context. A build fix for qlcnic is in here too, simply removing the added devinit annotations which no longer exist. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -1717,7 +1717,7 @@ int qlcnic_alloc_tx_rings(struct qlcnic_adapter *adapter,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __devinit
|
||||
static int
|
||||
qlcnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev = NULL;
|
||||
@@ -1909,7 +1909,7 @@ err_out_disable_pdev:
|
||||
return err;
|
||||
}
|
||||
|
||||
static void __devexit qlcnic_remove(struct pci_dev *pdev)
|
||||
static void qlcnic_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct qlcnic_adapter *adapter;
|
||||
struct net_device *netdev;
|
||||
|
||||
@@ -4677,7 +4677,7 @@ static int qlge_probe(struct pci_dev *pdev,
|
||||
qdev = netdev_priv(ndev);
|
||||
SET_NETDEV_DEV(ndev, &pdev->dev);
|
||||
ndev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM |
|
||||
NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN |
|
||||
NETIF_F_TSO | NETIF_F_TSO_ECN |
|
||||
NETIF_F_HW_VLAN_TX | NETIF_F_RXCSUM;
|
||||
ndev->features = ndev->hw_features |
|
||||
NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER;
|
||||
|
||||
Reference in New Issue
Block a user