diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2015-01-05 00:27:54 +1100 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2015-01-06 01:52:07 +0100 |
commit | ebe3a7aea368aad5fe4b2bb625db34d0a542cb64 (patch) | |
tree | 67ce75bc1461d6cb0b5f65a19b241983ed90efbf /src/mainboard/gigabyte | |
parent | 77757c22b9eede92234d07d65a23fdf4b970c8cf (diff) | |
download | coreboot-ebe3a7aea368aad5fe4b2bb625db34d0a542cb64.tar.xz |
mainboard/*/romstage.c: Fix 'lib/delay.c' inclusion
Use 'delay.h' header rather than directly including 'delay.c'
source. N.B. Some amdfam10 and K8 boards are not included in
this changeset since unrelated issues are woven in there.
Change-Id: Ibc0c0e560d8eedaf5c3150f95ba72fe5dd8d6f3a
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/8086
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/mainboard/gigabyte')
-rw-r--r-- | src/mainboard/gigabyte/ga-6bxc/romstage.c | 2 | ||||
-rw-r--r-- | src/mainboard/gigabyte/ga-6bxe/romstage.c | 2 | ||||
-rw-r--r-- | src/mainboard/gigabyte/ga_2761gxdk/romstage.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/gigabyte/ga-6bxc/romstage.c b/src/mainboard/gigabyte/ga-6bxc/romstage.c index 3897551e60..e61c653c39 100644 --- a/src/mainboard/gigabyte/ga-6bxc/romstage.c +++ b/src/mainboard/gigabyte/ga-6bxc/romstage.c @@ -27,7 +27,7 @@ #include <southbridge/intel/i82371eb/i82371eb.h> #include <northbridge/intel/i440bx/raminit.h> #include "drivers/pc80/udelay_io.c" -#include "lib/delay.c" +#include <delay.h> #include <cpu/x86/bist.h> #include <superio/ite/it8671f/it8671f.h> #include <lib.h> diff --git a/src/mainboard/gigabyte/ga-6bxe/romstage.c b/src/mainboard/gigabyte/ga-6bxe/romstage.c index 995a65723c..3ac2dfaa3b 100644 --- a/src/mainboard/gigabyte/ga-6bxe/romstage.c +++ b/src/mainboard/gigabyte/ga-6bxe/romstage.c @@ -27,7 +27,7 @@ #include <southbridge/intel/i82371eb/i82371eb.h> #include <northbridge/intel/i440bx/raminit.h> #include "drivers/pc80/udelay_io.c" -#include "lib/delay.c" +#include <delay.h> #include <cpu/x86/bist.h> #include <superio/ite/it8671f/it8671f.h> #include <lib.h> diff --git a/src/mainboard/gigabyte/ga_2761gxdk/romstage.c b/src/mainboard/gigabyte/ga_2761gxdk/romstage.c index 44fa4ca6b0..163886390a 100644 --- a/src/mainboard/gigabyte/ga_2761gxdk/romstage.c +++ b/src/mainboard/gigabyte/ga_2761gxdk/romstage.c @@ -35,7 +35,7 @@ #include <southbridge/sis/sis966/sis966.h> #include "southbridge/sis/sis966/early_smbus.c" #include <northbridge/amd/amdk8/raminit.h> -#include "lib/delay.c" +#include <delay.h> #include <cpu/x86/lapic.h> #include "northbridge/amd/amdk8/reset_test.c" #include <superio/ite/common/ite.h> |