diff options
author | 2012-09-28 02:59:29 +0000 | |
---|---|---|
committer | 2012-09-28 02:59:29 +0000 | |
commit | e570935b48ea73c2d417557f4a06a69dba50cf09 (patch) | |
tree | 1cf55e08ee60e56a7c4dd99dbead2311f6cd764e | |
parent | use xstrdup() helper (diff) | |
download | wireguard-openbsd-e570935b48ea73c2d417557f4a06a69dba50cf09.tar.xz wireguard-openbsd-e570935b48ea73c2d417557f4a06a69dba50cf09.zip |
Add support for the Adaptec 39320LPE controller.
From FreeBSD
ok kettenis@
-rw-r--r-- | sys/dev/pci/ahd_pci.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/pci/ahd_pci.c b/sys/dev/pci/ahd_pci.c index 8e4dda5ad0b..5a198cded05 100644 --- a/sys/dev/pci/ahd_pci.c +++ b/sys/dev/pci/ahd_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahd_pci.c,v 1.18 2009/05/31 04:47:59 deraadt Exp $ */ +/* $OpenBSD: ahd_pci.c,v 1.19 2012/09/28 02:59:29 brad Exp $ */ /* * Copyright (c) 2004 Milos Urbanek, Kenneth R. Westerback & Marco Peereboom @@ -119,6 +119,7 @@ ahd_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor) #define ID_AHA_39320D_B 0x801C900500419005ull #define ID_AHA_39320D_HP 0x8011900500AC0E11ull #define ID_AHA_39320D_B_HP 0x801C900500AC0E11ull +#define ID_AHA_39320LPE 0x8017900500459005ull #define ID_AIC7902_PCI_REV_A4 0x3 #define ID_AIC7902_PCI_REV_B0 0x10 #define SUBID_HP 0x0E11 @@ -221,6 +222,11 @@ struct ahd_pci_identity ahd_pci_ident_table [] = ID_ALL_MASK, ahd_aic7902_setup }, + { + ID_AHA_39320LPE, + ID_ALL_MASK, + ahd_aic7902_setup + }, /* Generic chip probes for devices we don't know 'exactly' */ { ID_AIC7901 & ID_9005_GENERIC_MASK, |