summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-02-22 12:44:10 -0700
committerBrian Paul <brianp@vmware.com>2011-02-22 12:47:18 -0700
commit7898d2ae16d335e27da599cd3cab04528248f959 (patch)
treef23d3d548edf7c924f0cf850b6f03702aeb7fd81 /src/gallium/drivers/i915
parent90e227f0791cb585dc4e4e1f71e32c67f5e20436 (diff)
i915g: remove extra semicolons
Diffstat (limited to 'src/gallium/drivers/i915')
-rw-r--r--src/gallium/drivers/i915/i915_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c
index e0ea025d0e..1713bf131f 100644
--- a/src/gallium/drivers/i915/i915_debug.c
+++ b/src/gallium/drivers/i915/i915_debug.c
@@ -48,9 +48,9 @@ static const struct debug_named_value debug_options[] = {
unsigned i915_debug = 0;
boolean i915_tiling = TRUE;
-DEBUG_GET_ONCE_FLAGS_OPTION(i915_debug, "I915_DEBUG", debug_options, 0);
-DEBUG_GET_ONCE_BOOL_OPTION(i915_no_tiling, "I915_NO_TILING", FALSE);
-DEBUG_GET_ONCE_BOOL_OPTION(i915_lie, "I915_LIE", FALSE);
+DEBUG_GET_ONCE_FLAGS_OPTION(i915_debug, "I915_DEBUG", debug_options, 0)
+DEBUG_GET_ONCE_BOOL_OPTION(i915_no_tiling, "I915_NO_TILING", FALSE)
+DEBUG_GET_ONCE_BOOL_OPTION(i915_lie, "I915_LIE", FALSE)
void i915_debug_init(struct i915_screen *is)
{