Patch set updated for coreboot: 309cc24 device/oprom/realmode/x86.c: Move includes to top of file

Edward O'Callaghan (eocallaghan@alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6401 -gerrit commit 309cc24f2bafc19baa0e4e92e8511a17091bc637 Author: Edward O'Callaghan <eocallaghan@alterapraxis.com> Date: Tue Jul 29 22:28:19 2014 +1000 device/oprom/realmode/x86.c: Move includes to top of file Change-Id: Ib68e1f570092a69447d307c33b98f70b817f0ec1 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> --- src/device/oprom/realmode/x86.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/device/oprom/realmode/x86.c b/src/device/oprom/realmode/x86.c index 4338e6e..7dec258 100644 --- a/src/device/oprom/realmode/x86.c +++ b/src/device/oprom/realmode/x86.c @@ -23,6 +23,9 @@ #include <arch/io.h> #include <arch/registers.h> +#include <cpu/amd/lxdef.h> +#include <cpu/amd/vr.h> +#include <cbfs.h> #include <console/console.h> #include <arch/interrupt.h> #include <cbfs.h> @@ -350,9 +353,6 @@ void run_bios(struct device *dev, unsigned long addr) } #if CONFIG_GEODE_VSA -#include <cpu/amd/lxdef.h> -#include <cpu/amd/vr.h> -#include <cbfs.h> #define VSA2_BUFFER 0x60000 #define VSA2_ENTRY_POINT 0x60020
participants (1)
-
Edward O'Callaghan