summaryrefslogtreecommitdiff
path: root/shared-core/radeon_drv.h
diff options
context:
space:
mode:
authorMihail Zenkov <mihail.zenkov@gmail.com>2008-10-06 00:49:15 -0400
committerAlex Deucher <alexdeucher@gmail.com>2008-10-06 00:49:15 -0400
commit5a36cce3499c48fe1bf137b26b2a5e8a383d0332 (patch)
treeb2a5773964b0b553d24e04df56e4f5f873252dee /shared-core/radeon_drv.h
parentce40261012d39e1096442ef48c45b305c8d69dbd (diff)
radeon: fix missing bit from rs740 patch
See bug 17908
Diffstat (limited to 'shared-core/radeon_drv.h')
-rw-r--r--shared-core/radeon_drv.h3
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 ); \