diff options
| author | Eric Anholt <anholt@FreeBSD.org> | 2006-06-27 14:05:11 +0000 |
|---|---|---|
| committer | Eric Anholt <anholt@FreeBSD.org> | 2006-06-27 14:05:11 +0000 |
| commit | 806baa640122dec6d290ed2cb4f827e6049eda84 (patch) | |
| tree | fe545aa86374ef0ffe2e0324c7f5068c81439dda /sys/dev | |
| parent | 904887e254403f56e43d961826cbb031a5e2469f (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/agp/agp_i810.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c index 5402166c853ac..65919b5ffd4f1 100644 --- a/sys/dev/agp/agp_i810.c +++ b/sys/dev/agp/agp_i810.c @@ -113,9 +113,9 @@ static const struct agp_i810_match { "Intel 82815 (i815 GMCH) SVGA controller"}, {0x35778086, CHIP_I830, 0x00020000, "Intel 82830M (830M GMCH) SVGA controller"}, - {0x35828086, CHIP_I830, 0x00020000, + {0x35828086, CHIP_I855, 0x00020000, "Intel 82852/5"}, - {0x25728086, CHIP_I830, 0x00020000, + {0x25728086, CHIP_I855, 0x00020000, "Intel 82865G (865G GMCH) SVGA controller"}, {0x25828086, CHIP_I915, 0x00020000, "Intel 82915G (915G GMCH) SVGA controller"}, @@ -224,7 +224,8 @@ agp_i810_probe(device_t dev) printf("I810: disabled, not probing\n"); return ENXIO; } - } else if (match->chiptype == CHIP_I830) { + } else if (match->chiptype == CHIP_I830 || + match->chiptype == CHIP_I855) { unsigned int gcc1; gcc1 = pci_read_config(bdev, AGP_I830_GCC1, 1); |
