summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2013-02-18 21:41:10 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-02-19 13:55:08 +0100
commit84b525cf46c2d835f81f778a6e732cf69aa20bea (patch)
treed24416a61b242e20797694fadaa6f565bf24bed1
parentd7b06f50d2856c6d78b704e835b7af57a8d70060 (diff)
intel_chipset: Add multiple inclusion guards into intel_chipset.h
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rwxr-xr-xlib/intel_chipset.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 6b4fab33..f703239e 100755
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -25,6 +25,9 @@
*
*/
+#ifndef _INTEL_CHIPSET_H
+#define _INTEL_CHIPSET_H
+
#define PCI_CHIP_I810 0x7121
#define PCI_CHIP_I810_DC100 0x7123
#define PCI_CHIP_I810_E 0x7125
@@ -274,3 +277,5 @@
#define IS_CRESTLINE(devid) ((devid) == PCI_CHIP_I965_GM || \
(devid) == PCI_CHIP_I965_GME)
+
+#endif /* _INTEL_CHIPSET_H */