summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_cs.h
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-03-20 14:47:49 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-03-20 14:53:21 -0700
commitf411a66c0679c1aa7a9ee3d1eb633a8cbf3ef5f2 (patch)
tree3ae088b0e5c58915684fe8d4a9bdf5a71724db05 /src/gallium/drivers/r300/r300_cs.h
parentedfaa686091a4f6238b8f315a475d90ff2c2f5f5 (diff)
r300-gallium: Misspelled macro name.
*pulls paper bag down over head*
Diffstat (limited to 'src/gallium/drivers/r300/r300_cs.h')
-rw-r--r--src/gallium/drivers/r300/r300_cs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h
index 2b9a441147..9913678d27 100644
--- a/src/gallium/drivers/r300/r300_cs.h
+++ b/src/gallium/drivers/r300/r300_cs.h
@@ -128,7 +128,7 @@
#define CP_PACKET3(op, count) \
(RADEON_CP_PACKET3 | (op) | ((count) << 16))
-#define R300_CS_PKT3(op, count) do { \
+#define OUT_CS_PKT3(op, count) do { \
OUT_CS(CP_PACKET3(op, count)); \
} while (0)