projects
/
profile
/
common
/
platform
/
kernel
/
linux-artik7.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84f720e
)
drm/radeon: fix reading CB_COLORn_MASK from the CS
author
Marek Olšák
<maraeo@gmail.com>
Wed, 22 Aug 2012 15:02:42 +0000
(17:02 +0200)
committer
Alex Deucher
<alexander.deucher@amd.com>
Wed, 29 Aug 2012 16:11:00 +0000
(12:11 -0400)
Signed-off-by: Marek Olšák <maraeo@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/r600_cs.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/r600_cs.c
b/drivers/gpu/drm/radeon/r600_cs.c
index
ab74e6b
..
7799e28
100644
(file)
--- a/
drivers/gpu/drm/radeon/r600_cs.c
+++ b/
drivers/gpu/drm/radeon/r600_cs.c
@@
-1416,7
+1416,7
@@
static int r600_cs_check_reg(struct radeon_cs_parser *p, u32 reg, u32 idx)
case R_028118_CB_COLOR6_MASK:
case R_02811C_CB_COLOR7_MASK:
tmp = (reg - R_028100_CB_COLOR0_MASK) / 4;
- track->cb_color_mask[tmp] =
ib[idx]
;
+ track->cb_color_mask[tmp] =
radeon_get_ib_value(p, idx)
;
if (G_0280A0_TILE_MODE(track->cb_color_info[tmp])) {
track->cb_dirty = true;
}