radeon: fix missing bit from rs740 patch

See bug 17908
main
Mihail Zenkov 2008-10-06 00:49:15 -04:00 committed by Alex Deucher
parent ce40261012
commit 5a36cce349
1 changed files with 2 additions and 1 deletions

View File

@ -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 ); \