Jesse Keating 2f82dda
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c
Jesse Keating 2f82dda
index 8f8139d..22c49ec 100644
Jesse Keating 2f82dda
--- a/drivers/net/e1000e/ich8lan.c
Jesse Keating 2f82dda
+++ b/drivers/net/e1000e/ich8lan.c
Jesse Keating 2f82dda
@@ -209,6 +209,12 @@ static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw)
Jesse Keating 2f82dda
 
Jesse Keating 2f82dda
 	/* Verify phy id */
Jesse Keating 2f82dda
 	switch (phy->id) {
Jesse Keating 2f82dda
+	case 0x0:
Jesse Keating 2f82dda
+		if (hw->adapter->pdev->device == 0x10be)
Jesse Keating 2f82dda
+			hw_dbg(hw, "got 0 phy id, trying anyway");
Jesse Keating 2f82dda
+			/* Fall through to IGP03E1000 case below */
Jesse Keating 2f82dda
+		else
Jesse Keating 2f82dda
+			return -E1000_ERR_PHY;
Jesse Keating 2f82dda
 	case IGP03E1000_E_PHY_ID:
Jesse Keating 2f82dda
 		phy->type = e1000_phy_igp_3;
Jesse Keating 2f82dda
 		phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Jesse Keating 2f82dda
--- linux-2.6.25.noarch/drivers/net/e1000e/netdev.c~	2008-05-16 10:31:41.000000000 -0400
Jesse Keating 2f82dda
+++ linux-2.6.25.noarch/drivers/net/e1000e/netdev.c	2008-05-16 10:32:43.000000000 -0400
Jesse Keating 2f82dda
@@ -4599,6 +4599,7 @@ static struct pci_device_id e1000_pci_tb
Jesse Keating 2f82dda
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
Jesse Keating 2f82dda
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
Jesse Keating 2f82dda
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
Jesse Keating 2f82dda
+	{ PCI_VDEVICE(INTEL, 0x10be), board_ich9lan },
Jesse Keating 2f82dda
 
Jesse Keating 2f82dda
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
Jesse Keating 2f82dda
 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },