diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-05-07 18:03:27 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-05-07 18:03:27 +0000 |
| commit | b2dd339fdc6aa3dbf70514eac18c66cd2d0dfdcf (patch) | |
| tree | c9627ec005fe2649badf6f46f2b76f60398b90f0 /sys/pci/pcisupport.c | |
| parent | 49c36ff4f30e6c77c536c9e44b6c437923ac992c (diff) | |
Notes
Diffstat (limited to 'sys/pci/pcisupport.c')
| -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 a356285092cd6..14880cf756be0 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcisupport.c,v 1.101 1999/05/06 21:21:30 julian Exp $ +** $Id: pcisupport.c,v 1.102 1999/05/07 04:04:42 julian Exp $ ** ** Device driver for DEC/INTEL PCI chipsets. ** @@ -1091,7 +1091,11 @@ chip_match(device_t dev) return ("Intel 82439TX System Controller (MTXC)"); case 0x71138086: +#if NINTPM > 0 + return NULL; +#else return ("Intel 82371AB Power management controller"); +#endif case 0x12378086: fixwsc_natoma(dev); return ("Intel 82440FX (Natoma) PCI and memory controller"); |
