mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
r600: Remove spaces between backslash and newline.
Fixes the following GCC warnings. r600_cmdbuf.h:201: warning: backslash and newline separated by space r600_cmdbuf.h:202: warning: backslash and newline separated by space
This commit is contained in:
parent
0a21938de9
commit
67925c6cd6
1 changed files with 2 additions and 2 deletions
|
|
@ -198,8 +198,8 @@ do { \
|
|||
R600_OUT_BATCH(((reg) - R600_SET_CONFIG_REG_OFFSET) >> 2); \
|
||||
} else if ((reg) >= R600_SET_CONTEXT_REG_OFFSET && (reg) < R600_SET_CONTEXT_REG_END) { \
|
||||
R600_OUT_BATCH(CP_PACKET3(R600_IT_SET_CONTEXT_REG, (num))); \
|
||||
R600_OUT_BATCH(((reg) - R600_SET_CONTEXT_REG_OFFSET) >> 2); \
|
||||
} else if ((reg) >= EG_SET_RESOURCE_OFFSET && (reg) < EG_SET_RESOURCE_END) { \
|
||||
R600_OUT_BATCH(((reg) - R600_SET_CONTEXT_REG_OFFSET) >> 2); \
|
||||
} else if ((reg) >= EG_SET_RESOURCE_OFFSET && (reg) < EG_SET_RESOURCE_END) { \
|
||||
R600_OUT_BATCH(CP_PACKET3(R600_IT_SET_RESOURCE, (num))); \
|
||||
R600_OUT_BATCH(((reg) - EG_SET_RESOURCE_OFFSET) >> 2); \
|
||||
} else if ((reg) >= EG_SET_LOOP_CONST_OFFSET && (reg) < EG_SET_LOOP_CONST_END) { \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue