diff options
author | Rik Faith <faith@alephnull.com> | 2000-08-18 13:55:23 +0000 |
---|---|---|
committer | Rik Faith <faith@alephnull.com> | 2000-08-18 13:55:23 +0000 |
commit | f0f6509a72abf3a3a0a8f26a35b7a8f3d96cbb9b (patch) | |
tree | 2c39842303facee602aba15caba506aaf1383985 /linux/agpsupport.c | |
parent | f75ec3010ad8d15d316f6e6d580c85f9e6b8466e (diff) |
Sync with Linux 2.4.0-test7/pre4
Diffstat (limited to 'linux/agpsupport.c')
-rw-r--r-- | linux/agpsupport.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/linux/agpsupport.c b/linux/agpsupport.c index 7ed234e1..42a1bc2f 100644 --- a/linux/agpsupport.c +++ b/linux/agpsupport.c @@ -309,7 +309,9 @@ drm_agp_head_t *drm_agp_init(void) #if LINUX_VERSION_CODE >= 0x020400 case VIA_MVP4: head->chipset = "VIA MVP4"; break; - case VIA_APOLLO_SUPER: head->chipset = "VIA Apollo Super"; + case VIA_APOLLO_KX133: head->chipset = "VIA Apollo KX133"; + break; + case VIA_APOLLO_KT133: head->chipset = "VIA Apollo KT133"; break; #endif @@ -322,7 +324,7 @@ drm_agp_head_t *drm_agp_init(void) case ALI_M1541: head->chipset = "ALi M1541"; break; default: head->chipset = "Unknown"; break; } - DRM_INFO("AGP %d.%d on %s @ 0x%08lx %dMB\n", + DRM_INFO("AGP %d.%d on %s @ 0x%08lx %ZuMB\n", head->agp_info.version.major, head->agp_info.version.minor, head->chipset, |