intel/genxml: Update macro documentation
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 23 Feb 2016 05:20:04 +0000 (21:20 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Tue, 23 Feb 2016 05:20:04 +0000 (21:20 -0800)
src/intel/genxml/gen_macros.h

index 2658d03292874578b11df307feb6ed86b10f4c8b..052c57f8a770229cc148962d19c062c0cb0cc74c 100644 (file)
@@ -44,7 +44,7 @@
  *
  * You can do pseudo-runtime checks in your function such as
  *
- * if (ANV_GEN > 8 || ANV_IS_HASWELL) {
+ * if (GEN_GEN > 8 || GEN_IS_HASWELL) {
  *    // Do something
  * }
  *
@@ -54,7 +54,7 @@
  * For places where you really do have a compile-time conflict, you can
  * use preprocessor logic:
  *
- * #if (ANV_GEN > 8 || ANV_IS_HASWELL)
+ * #if (GEN_GEN > 8 || GEN_IS_HASWELL)
  *    // Do something
  * #endif
  *