diff options
author | John Doe <[email protected]> | 2010-09-15 11:47:32 -0400 |
---|---|---|
committer | John Doe <[email protected]> | 2010-09-15 11:48:34 -0400 |
commit | e0b6df4fcce0964ea7930efeb40cb487b4c53337 (patch) | |
tree | 3ddfbc8e750d004391ad94a595c59bd437203485 /src/gallium/drivers/r600/r600_asm.c | |
parent | 26fe16a99b762d27e8f499c2e02116e9c4b7a6bb (diff) |
r600g: misc cleanup
Avoid using r600_screen structure to get ptr to radeon
winsys structure.
Signed-off-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 662b9b9115d..0d17f75da7e 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -20,11 +20,12 @@ * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "r600_asm.h" +#include "radeon.h" #include "r600_context.h" #include "util/u_memory.h" #include "r600_sq.h" #include "r600_opcodes.h" +#include "r600_asm.h" #include <stdio.h> #include <errno.h> @@ -71,7 +72,6 @@ static inline unsigned int r600_bc_get_num_operands(struct r600_bc_alu *alu) case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SIN: case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_COS: return 1; - default: R600_ERR( "Need instruction operand number for 0x%x.\n", alu->inst); }; |