drm/radeon/evergreen: make texdw[] array larger

We store stuff in texdw[7] so this array needs to have 8 elements.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Dan Carpenter 2012-02-14 10:38:11 +03:00 committed by Dave Airlie
parent cdbe8b5426
commit 42b923b587
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ static int evergreen_cs_track_validate_texture(struct radeon_cs_parser *p,
struct eg_surface surf; struct eg_surface surf;
unsigned long toffset, moffset; unsigned long toffset, moffset;
unsigned dim, llevel, mslice, width, height, depth, i; unsigned dim, llevel, mslice, width, height, depth, i;
u32 texdw[7]; u32 texdw[8];
int r; int r;
texdw[0] = radeon_get_ib_value(p, idx + 0); texdw[0] = radeon_get_ib_value(p, idx + 0);