diff options
author | anholt <anholt@FreeBSD.org> | 2002-09-15 08:43:23 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2002-09-15 08:43:23 +0000 |
commit | 2c45f11386f85e820caa981335998889102ba202 (patch) | |
tree | fe2595a03ca4d32fd4c33176abd9b18131f55cdb /sys/pci | |
parent | 8569d04e14d1a2dc0eb9f3834659210926c80f73 (diff) | |
download | FreeBSD-src-2c45f11386f85e820caa981335998889102ba202.zip FreeBSD-src-2c45f11386f85e820caa981335998889102ba202.tar.gz |
Fix i810 after i830 commit.
Submitted by: David Dawes <dawes@XFree86.Org>
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/agp_i810.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/pci/agp_i810.c b/sys/pci/agp_i810.c index 4353f80..fdab4b6 100644 --- a/sys/pci/agp_i810.c +++ b/sys/pci/agp_i810.c @@ -222,9 +222,11 @@ agp_i810_attach(device_t dev) case 0x71258086: case 0x11328086: sc->chiptype = CHIP_I810; + break; case 0x35778086: case 0x25628086: sc->chiptype = CHIP_I830; + break; }; /* Same for i810 and i830 */ |