diff options
author | Dave Airlie <airlied@starflyer-ubuntu.(none)> | 2006-09-12 06:13:14 +1000 |
---|---|---|
committer | Dave Airlie <airlied@starflyer-ubuntu.(none)> | 2006-09-12 06:13:14 +1000 |
commit | 3cc64a943a7240c73c92ab103ba0502b9ec07fee (patch) | |
tree | f763ff1a5ea6bca61f2468f58ca8b9c7a43295a1 /linux-core | |
parent | dddacd7a3a4bd0c453b346cee70d1d36a401e539 (diff) |
drm: use radeon specific names for radeon flags
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/radeon_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/radeon_drv.c b/linux-core/radeon_drv.c index fca2d4e7..b15e983e 100644 --- a/linux-core/radeon_drv.c +++ b/linux-core/radeon_drv.c @@ -45,7 +45,7 @@ module_param_named(no_wb, radeon_no_wb, int, 0444); static int dri_library_name(struct drm_device * dev, char * buf) { drm_radeon_private_t *dev_priv = dev->dev_private; - int family = dev_priv->flags & CHIP_FAMILY_MASK; + int family = dev_priv->flags & RADEON_FAMILY_MASK; return snprintf(buf, PAGE_SIZE, "%s\n", (family < CHIP_R200) ? "radeon" : |