From 7b62ed9aed8794e9efe0059dbf37bc41dc691323 Mon Sep 17 00:00:00 2001 From: Michel Daenzer Date: Sat, 10 Jan 2004 12:28:06 +0000 Subject: [PATCH] R200_PP_CUBIC_OFFSET_F1_[0-6] state packets only contain 5 offsets, not 6 (thanks to Andreas Stenglein for spotting this) --- shared-core/radeon_state.c | 2 +- shared/radeon_state.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shared-core/radeon_state.c b/shared-core/radeon_state.c index e24bee8..6e02654 100644 --- a/shared-core/radeon_state.c +++ b/shared-core/radeon_state.c @@ -110,7 +110,7 @@ static __inline__ int radeon_check_and_fixup_packets( drm_radeon_private_t *dev_ id == R200_PP_CUBIC_OFFSET_F1_2 || id == R200_PP_CUBIC_OFFSET_F1_3 || id == R200_PP_CUBIC_OFFSET_F1_4 || id == R200_PP_CUBIC_OFFSET_F1_5 ) { int i; - for ( i = 0; i < 6; i++ ) { + for ( i = 0; i < 5; i++ ) { if ( radeon_check_and_fixup_offset_user( dev_priv, filp_priv, &data[i] ) ) { diff --git a/shared/radeon_state.c b/shared/radeon_state.c index e24bee8..6e02654 100644 --- a/shared/radeon_state.c +++ b/shared/radeon_state.c @@ -110,7 +110,7 @@ static __inline__ int radeon_check_and_fixup_packets( drm_radeon_private_t *dev_ id == R200_PP_CUBIC_OFFSET_F1_2 || id == R200_PP_CUBIC_OFFSET_F1_3 || id == R200_PP_CUBIC_OFFSET_F1_4 || id == R200_PP_CUBIC_OFFSET_F1_5 ) { int i; - for ( i = 0; i < 6; i++ ) { + for ( i = 0; i < 5; i++ ) { if ( radeon_check_and_fixup_offset_user( dev_priv, filp_priv, &data[i] ) ) { -- 2.7.4