commit c9df1ef91bf665fd9ee2e842a1140002a131730d parent 4d5f85b4675e588bf7c0c09ab00f40c5395695c9 Author: Michael Forney <mforney@mforney.org> Date: Fri, 21 Jun 2013 22:18:14 -0700 intel: Fix include guard names Diffstat:
M | intel/batch.h | | | 4 | ++-- |
M | intel/blt.h | | | 4 | ++-- |
M | intel/mi.h | | | 4 | ++-- |
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/intel/batch.h b/intel/batch.h @@ -1,5 +1,5 @@ -#ifndef SWC_I915_BATCH_H -#define SWC_I915_BATCH_H 1 +#ifndef SWC_INTEL_BATCH_H +#define SWC_INTEL_BATCH_H 1 #include <stdlib.h> #include <stdint.h> diff --git a/intel/blt.h b/intel/blt.h @@ -1,5 +1,5 @@ -#ifndef SWC_I915_BLT_H -#define SWC_I915_BLT_H 1 +#ifndef SWC_INTEL_BLT_H +#define SWC_INTEL_BLT_H 1 #include "batch.h" diff --git a/intel/mi.h b/intel/mi.h @@ -1,5 +1,5 @@ -#ifndef SWC_I915_MI_H -#define SWC_I915_MI_H 1 +#ifndef SWC_INTEL_MI_H +#define SWC_INTEL_MI_H 1 #include "batch.h"