diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-03-10 03:08:35 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-03-10 03:08:35 +0000 |
commit | 7c75918ee55e1ec431d99752d6e8167983c06bd8 (patch) | |
tree | a4e810ad6de877f92ebc87a987ae8f91c5f26028 /sys/dev/pci/if_em_hw.c | |
parent | 751dd9296e1519fc70ce822692c880a7df856bb1 (diff) |
match on more i217/i218 variants
Diffstat (limited to 'sys/dev/pci/if_em_hw.c')
-rw-r--r-- | sys/dev/pci/if_em_hw.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/if_em_hw.c b/sys/dev/pci/if_em_hw.c index f11de823fa0..99dab188122 100644 --- a/sys/dev/pci/if_em_hw.c +++ b/sys/dev/pci/if_em_hw.c @@ -31,7 +31,7 @@ *******************************************************************************/ -/* $OpenBSD: if_em_hw.c,v 1.77 2014/02/22 04:41:31 chris Exp $ */ +/* $OpenBSD: if_em_hw.c,v 1.78 2014/03/10 03:08:34 jsg Exp $ */ /* * if_em_hw.c Shared functions for accessing and configuring the MAC */ @@ -592,6 +592,10 @@ em_set_mac_type(struct em_hw *hw) case E1000_DEV_ID_PCH_LPT_I217_V: case E1000_DEV_ID_PCH_LPTLP_I218_LM: case E1000_DEV_ID_PCH_LPTLP_I218_V: + case E1000_DEV_ID_PCH_I218_LM2: + case E1000_DEV_ID_PCH_I218_V2: + case E1000_DEV_ID_PCH_I218_LM3: + case E1000_DEV_ID_PCH_I218_V3: hw->mac_type = em_pch_lpt; break; case E1000_DEV_ID_EP80579_LAN_1: |