From d7ee9dda708321f80161695714737b0f974509d3 Mon Sep 17 00:00:00 2001 From: Iru Cai Date: Wed, 24 Feb 2016 15:03:58 +0800 Subject: northbridge/intel: add missing #include guards I first found the missing of #include guards when I tried to include both sandybridge/gma.h and sandybridge/sandybridge.h, but sandybridge.h includes gma.h in it and gives a compile error. Change-Id: I13fdb8014b82e6065be2064137b7ea10062deaca Signed-off-by: Iru Cai Reviewed-on: https://review.coreboot.org/13775 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/northbridge/intel/i440bx/i440bx.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/northbridge/intel/i440bx') diff --git a/src/northbridge/intel/i440bx/i440bx.h b/src/northbridge/intel/i440bx/i440bx.h index 44dca2f66c..4724719cfd 100644 --- a/src/northbridge/intel/i440bx/i440bx.h +++ b/src/northbridge/intel/i440bx/i440bx.h @@ -14,6 +14,9 @@ * GNU General Public License for more details. */ +#ifndef NORTHBRIDGE_INTEL_I440BX_I440BX_H +#define NORTHBRIDGE_INTEL_I440BX_I440BX_H + /* * Datasheet: * - Name: Intel 440BX AGPset: 82443BX Host Bridge/Controller @@ -82,3 +85,5 @@ #define DWTC 0xe0 /* DRAM Write Thermal Throttling Control (0x000..000). */ #define DRTC 0xe8 /* DRAM Read Thermal Throttling Control (0x000..000). */ #define BUFFC 0xf0 /* Buffer Control Register (0x0000). */ + +#endif /* NORTHBRIDGE_INTEL_I440BX_I440BX_H */ -- cgit v1.2.3