aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000/e1000_hw.c
diff options
context:
space:
mode:
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>2006-12-15 10:37:32 +0100
committerJeff Garzik <jeff@garzik.org>2006-12-26 15:51:30 -0500
commitc3813ae6615107cc93c79200f477ffd2a870c8ab (patch)
tree8c6c83364995308ad102a44a1ef7e6e3ceb5f93c /drivers/net/e1000/e1000_hw.c
parent[PATCH] e1000: fix to set the new max frame size before resetting the adapter (diff)
downloadlinux-dev-c3813ae6615107cc93c79200f477ffd2a870c8ab.tar.xz
linux-dev-c3813ae6615107cc93c79200f477ffd2a870c8ab.zip
[PATCH] e1000: fix ethtool reported bus type for older adapters
For older adapters we know that they are of the PCI bus type, so we can just set this. Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/e1000/e1000_hw.c')
-rw-r--r--drivers/net/e1000/e1000_hw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/e1000/e1000_hw.c b/drivers/net/e1000/e1000_hw.c
index ea7b371e9119..5a6a61ecb27d 100644
--- a/drivers/net/e1000/e1000_hw.c
+++ b/drivers/net/e1000/e1000_hw.c
@@ -6591,7 +6591,7 @@ e1000_get_bus_info(struct e1000_hw *hw)
switch (hw->mac_type) {
case e1000_82542_rev2_0:
case e1000_82542_rev2_1:
- hw->bus_type = e1000_bus_type_unknown;
+ hw->bus_type = e1000_bus_type_pci;
hw->bus_speed = e1000_bus_speed_unknown;
hw->bus_width = e1000_bus_width_unknown;
break;