diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-03 00:05:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-03 00:05:30 -0400 |
commit | ef8a97bbc92ec07e3a07a81cc011dc549f8c7a23 (patch) | |
tree | 82a95f16d9236bc35a4cfd42ba8cab61981efda8 /drivers/net/r8169.c | |
parent | 4f032ac4122a77dbabf7a24b2739b2790448180f (diff) | |
parent | 6c8ad3b07f7d9efdc41396db6da0aed906922701 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (54 commits)
glge: remove unused #include <version.h>
dnet: remove unused #include <version.h>
tcp: miscounts due to tcp_fragment pcount reset
tcp: add helper for counter tweaking due mid-wq change
hso: fix for the 'invalid frame length' messages
hso: fix for crash when unplugging the device
fsl_pq_mdio: Fix compile failure
fsl_pq_mdio: Revive UCC MDIO support
ucc_geth: Pass proper device to DMA routines, otherwise oops happens
i.MX31: Fixing cs89x0 network building to i.MX31ADS
tc35815: Fix build error if NAPI enabled
hso: add Vendor/Product ID's for new devices
ucc_geth: Remove unused header
gianfar: Remove unused header
kaweth: Fix locking to be SMP-safe
net: allow multiple dev per napi with GRO
r8169: reset IntrStatus after chip reset
ixgbe: Fix potential memory leak/driver panic issue while setting up Tx & Rx ring parameters
ixgbe: fix ethtool -A|a behavior
ixgbe: Patch to fix driver panic while freeing up tx & rx resources
...
Diffstat (limited to 'drivers/net/r8169.c')
-rw-r--r-- | drivers/net/r8169.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index 06c535222666..e1a638a05f86 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c | |||
@@ -2075,8 +2075,7 @@ rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2075 | if (!tp->pcie_cap && netif_msg_probe(tp)) | 2075 | if (!tp->pcie_cap && netif_msg_probe(tp)) |
2076 | dev_info(&pdev->dev, "no PCI Express capability\n"); | 2076 | dev_info(&pdev->dev, "no PCI Express capability\n"); |
2077 | 2077 | ||
2078 | /* Unneeded ? Don't mess with Mrs. Murphy. */ | 2078 | RTL_W16(IntrMask, 0x0000); |
2079 | rtl8169_irq_mask_and_ack(ioaddr); | ||
2080 | 2079 | ||
2081 | /* Soft reset the chip. */ | 2080 | /* Soft reset the chip. */ |
2082 | RTL_W8(ChipCmd, CmdReset); | 2081 | RTL_W8(ChipCmd, CmdReset); |
@@ -2088,6 +2087,8 @@ rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2088 | msleep_interruptible(1); | 2087 | msleep_interruptible(1); |
2089 | } | 2088 | } |
2090 | 2089 | ||
2090 | RTL_W16(IntrStatus, 0xffff); | ||
2091 | |||
2091 | /* Identify chip attached to board */ | 2092 | /* Identify chip attached to board */ |
2092 | rtl8169_get_mac_version(tp, ioaddr); | 2093 | rtl8169_get_mac_version(tp, ioaddr); |
2093 | 2094 | ||