summaryrefslogtreecommitdiff
path: root/lib/intel_batchbuffer.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-03-13 01:38:42 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-03-13 18:07:21 +0100
commit49e3877ae7280efb62dc23ea748afbeb96934ace (patch)
tree52d1c750939fa5259ad5210a15fc8b1eca937b36 /lib/intel_batchbuffer.h
parent675c91974e2e3cc781a4dd630c20c3f992eae8b8 (diff)
lib/intel_batchbuffer: Remove BATCH_LOCALS
Totally unused, we have frisky implicit assumptions that the batch is called batch instead. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'lib/intel_batchbuffer.h')
-rw-r--r--lib/intel_batchbuffer.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h
index 7dbb5756..fe000e7d 100644
--- a/lib/intel_batchbuffer.h
+++ b/lib/intel_batchbuffer.h
@@ -71,10 +71,6 @@ intel_batchbuffer_require_space(struct intel_batchbuffer *batch,
intel_batchbuffer_flush(batch);
}
-/* Here are the crusty old macros, to be removed:
- */
-#define BATCH_LOCALS
-
#define BEGIN_BATCH(n) do { \
intel_batchbuffer_require_space(batch, (n)*4); \
} while (0)