diff options
author | Mihail Zenkov <mihail.zenkov@gmail.com> | 2008-10-06 00:49:15 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-10-06 00:49:15 -0400 |
commit | 5a36cce3499c48fe1bf137b26b2a5e8a383d0332 (patch) | |
tree | b2a5773964b0b553d24e04df56e4f5f873252dee /shared-core | |
parent | ce40261012d39e1096442ef48c45b305c8d69dbd (diff) |
radeon: fix missing bit from rs740 patch
See bug 17908
Diffstat (limited to 'shared-core')
-rw-r--r-- | shared-core/radeon_drv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared-core/radeon_drv.h b/shared-core/radeon_drv.h index 8471d103..5e188bfc 100644 --- a/shared-core/radeon_drv.h +++ b/shared-core/radeon_drv.h @@ -1233,7 +1233,8 @@ do { \ #define IGP_WRITE_MCIND( addr, val ) \ do { \ - if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) \ + if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || \ + ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) \ RS690_WRITE_MCIND( addr, val ); \ else \ RS480_WRITE_MCIND( addr, val ); \ |