- added 82541PI to the list of supported devices (so I can use my card...)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17682 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe 2006-05-31 21:49:09 +00:00
parent 0d960ff17f
commit bc1eea091b
3 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,7 @@ identify_device(const pci_info *info)
case 0x1079: return "82546GB COPPER";
case 0x107A: return "82546GB FIBER";
case 0x107B: return "82546GB SERDES";
case 0x107C: return "82541PI";
default: return 0;
}
}

View File

@ -257,6 +257,7 @@ em_set_mac_type(struct em_hw *hw)
break;
case E1000_DEV_ID_82541ER:
case E1000_DEV_ID_82541GI:
case E1000_DEV_ID_82541PI:
case E1000_DEV_ID_82541GI_MOBILE:
hw->mac_type = em_82541_rev_2;
break;

View File

@ -366,6 +366,7 @@ int32_t em_set_d3_lplu_state(struct em_hw *hw, boolean_t active);
#define E1000_DEV_ID_82546GB_FIBER 0x107A
#define E1000_DEV_ID_82546GB_SERDES 0x107B
#define E1000_DEV_ID_82547EI 0x1019
#define E1000_DEV_ID_82541PI 0x107C
#define NODE_ADDRESS_SIZE 6
#define ETH_LENGTH_OF_ADDRESS 6