diff options
author | Roland Scheidegger <rscheidegger_lists@hispeed.ch> | 2006-03-17 03:00:53 +0000 |
---|---|---|
committer | Roland Scheidegger <rscheidegger_lists@hispeed.ch> | 2006-03-17 03:00:53 +0000 |
commit | 323ecb92e40d71c5ef994b41b6d8dedba6dd6203 (patch) | |
tree | 7f09fbd0ef4af24c270df6b29635b85bbabdd217 /src/radeon_dri.c | |
parent | dc552edf191e14249421f8b27146874f16b80c1a (diff) |
Fix various small cosmetic issues. Change a driver message, get the order
right for requesting drm versions, replace the use of some numbers with
the respective macro defines in radeon_video.c, and add some more macro
defines. None of that really matters.
Diffstat (limited to 'src/radeon_dri.c')
-rw-r--r-- | src/radeon_dri.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/radeon_dri.c b/src/radeon_dri.c index 868b735..1b67e9d 100644 --- a/src/radeon_dri.c +++ b/src/radeon_dri.c @@ -1288,12 +1288,12 @@ Bool RADEONDRIGetVersion(ScrnInfoPtr pScrn) } /* Now check if we qualify */ - if (info->IsIGP) { - req_minor = 10; - req_patch = 0; - } else if (info->ChipFamily >= CHIP_FAMILY_R300) { + if (info->ChipFamily >= CHIP_FAMILY_R300) { req_minor = 17; req_patch = 0; + } else if (info->IsIGP) { + req_minor = 10; + req_patch = 0; } else if (info->ChipFamily >= CHIP_FAMILY_R200) { req_minor = 5; req_patch = 0; |