diff options
| author | Eric Anholt <anholt@FreeBSD.org> | 2005-11-29 04:53:22 +0000 |
|---|---|---|
| committer | Eric Anholt <anholt@FreeBSD.org> | 2005-11-29 04:53:22 +0000 |
| commit | f0fc8e98b34a66fea80a60f52af3fb1707d4b300 (patch) | |
| tree | 9f474de3cbd399b631c61f8217f44711c1cce498 /sys/dev | |
| parent | 5c8a6f63b2283d12c77e308008ca0689fa58895e (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/agp/agp_intel.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/agp/agp_intel.c b/sys/dev/agp/agp_intel.c index 7e8477b93c10d..42b49dc1b722b 100644 --- a/sys/dev/agp/agp_intel.c +++ b/sys/dev/agp/agp_intel.c @@ -115,8 +115,11 @@ agp_intel_match(device_t dev) case 0x25788086: return ("Intel 82875P host to AGP bridge"); - case 0x25608086: /* i845G */ + case 0x25608086: return ("Intel 82845G host to AGP bridge"); + + case 0x35808086: + return ("Intel 82855GM host to AGP bridge"); }; return NULL; @@ -215,6 +218,7 @@ agp_intel_attach(device_t dev) case 0x1a308086: /* i845 */ case 0x33408086: /* i855 */ + case 0x35808086: /* i855GM */ case 0x255d8086: /* E7205 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ @@ -289,6 +293,7 @@ agp_intel_detach(device_t dev) case 0x1a308086: /* i845 */ case 0x25608086: /* i845G */ case 0x33408086: /* i855 */ + case 0x35808086: /* i855GM */ case 0x255d8086: /* E7205 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ |
