diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-05-13 18:03:49 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-05-13 18:03:49 +0000 |
commit | 4f894a055a8f593ba2b6a36e29ecf2bd85fefb90 (patch) | |
tree | 2350db67dcffe00476462362ec96c18e35a6e5a1 /sys/dev/pci | |
parent | 74fc11a050bbd3345bb6c628e99ca897bb0edd97 (diff) |
recognize 82551's
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index a0383ea754b..d65e00df464 100644 --- a/sys/dev/pci/if_fxp_pci.c +++ b/sys/dev/pci/if_fxp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_pci.c,v 1.33 2005/03/27 10:45:49 brad Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.34 2005/05/13 18:03:48 brad Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -184,6 +184,8 @@ fxp_pci_attach(parent, self, aux) chipname = "i82559S"; if (rev >= FXP_REV_82550) chipname = "i82550"; + if (rev >= FXP_REV_82551_E) + chipname = "i82551"; if (chipname != NULL) printf(", %s", chipname); |