From: Corbin Simpson Date: Fri, 20 Mar 2009 21:47:49 +0000 (-0700) Subject: r300-gallium: Misspelled macro name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f411a66c0679c1aa7a9ee3d1eb633a8cbf3ef5f2;p=mesa.git r300-gallium: Misspelled macro name. *pulls paper bag down over head* --- diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h index 2b9a441147d..9913678d272 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)