diff options
| author | Satoshi Asami <asami@FreeBSD.org> | 1997-10-10 11:52:17 +0000 |
|---|---|---|
| committer | Satoshi Asami <asami@FreeBSD.org> | 1997-10-10 11:52:17 +0000 |
| commit | 02e350492743401ebde05cab52b802407e89e04d (patch) | |
| tree | 4d25c06f43fa574d77fb5177926d61d5f98ccce1 | |
| parent | 116851ffa3e487238db0a6a425a7c0bd6197435d (diff) | |
Notes
| -rw-r--r-- | sys/pci/pcisupport.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index b0ac2272dfff..a77e9f218041 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcisupport.c,v 1.53 1997/08/16 07:18:51 dyson Exp $ +** $Id: pcisupport.c,v 1.54 1997/09/24 07:37:56 phk Exp $ ** ** Device driver for DEC/INTEL PCI chipsets. ** @@ -188,6 +188,10 @@ chipset_probe (pcici_t tag, pcidi_t type) return ("Intel 82437FX PCI cache memory controller"); case 0x122e8086: return ("Intel 82371FB PCI to ISA bridge"); + case 0x12348086: + return ("Intel 82371MX mobile PCI I/O IDE accelerator (MPIIX)"); + case 0x12358086: + return ("Intel 82437MX mobile PCI cache memory controller"); case 0x12508086: return ("Intel 82439"); case 0x04061039: |
