x86: Minimal changes to fix previous commit that renamed headers

This commit is contained in:
Adrian Danis 2015-07-02 15:09:01 +10:00
parent c597c72fdf
commit 022287c38b
10 changed files with 90 additions and 10 deletions

View file

@ -8,8 +8,8 @@
* @TAG(GD_GPL)
*/
#ifndef __ARCH_MACHINE_H
#define __ARCH_MACHINE_H
#ifndef __MODE_MACHINE_H
#define __MODE_MACHINE_H
#include <arch/types.h>
#include <arch/object/structures.h>

View file

@ -8,8 +8,8 @@
* @TAG(GD_GPL)
*/
#ifndef __ARCH_MACHINE_CPU_REGISTERS_H
#define __ARCH_MACHINE_CPU_REGISTERS_H
#ifndef __MODE_MACHINE_CPU_REGISTERS_H
#define __MODE_MACHINE_CPU_REGISTERS_H
#define CR0_MONITOR_COPROC BIT(1) /* Trap on FPU "WAIT" commands. */
#define CR0_EMULATION BIT(2) /* Enable OS emulation of FPU. */

View file

@ -8,8 +8,8 @@
* @TAG(GD_GPL)
*/
#ifndef __ARCH_MACHINE_REGISTERSET_H
#define __ARCH_MACHINE_REGISTERSET_H
#ifndef __MODE_MACHINE_REGISTERSET_H
#define __MODE_MACHINE_REGISTERSET_H
#include <arch/types.h>
#include <util.h>

View file

@ -8,8 +8,8 @@
* @TAG(GD_GPL)
*/
#ifndef __ARCH_OBJECT_STRUCTURES_H
#define __ARCH_OBJECT_STRUCTURES_H
#ifndef __MODE_OBJECT_STRUCTURES_H
#define __MODE_OBJECT_STRUCTURES_H
#include <assert.h>
#include <config.h>

View file

@ -0,0 +1,16 @@
/*
* Copyright 2014, General Dynamics C4 Systems
*
* This software may be distributed and modified according to the terms of
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
* See "LICENSE_GPLv2.txt" for details.
*
* @TAG(GD_GPL)
*/
#ifndef __ARCH_MACHINE_H
#define __ARCH_MACHINE_H
#include <mode/machine.h>
#endif

View file

@ -0,0 +1,16 @@
/*
* Copyright 2014, General Dynamics C4 Systems
*
* This software may be distributed and modified according to the terms of
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
* See "LICENSE_GPLv2.txt" for details.
*
* @TAG(GD_GPL)
*/
#ifndef __ARCH_MACHINE_CPU_REGISTERS_H
#define __ARCH_MACHINE_CPU_REGISTERS_H
#include <mode/machine/cpu_registers.h>
#endif

View file

@ -0,0 +1,16 @@
/*
* Copyright 2014, General Dynamics C4 Systems
*
* This software may be distributed and modified according to the terms of
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
* See "LICENSE_GPLv2.txt" for details.
*
* @TAG(GD_GPL)
*/
#ifndef __ARCH_MACHINE_REGISTERSET_H
#define __ARCH_MACHINE_REGISTERSET_H
#include <mode/machine/registerset.h>
#endif

View file

@ -0,0 +1,16 @@
/*
* Copyright 2014, General Dynamics C4 Systems
*
* This software may be distributed and modified according to the terms of
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
* See "LICENSE_GPLv2.txt" for details.
*
* @TAG(GD_GPL)
*/
#ifndef __ARCH_OBJECT_STRUCTURES_H
#define __ARCH_OBJECT_STRUCTURES_H
#include <mode/object/structures.h>
#endif

View file

@ -8,8 +8,8 @@
* @TAG(GD_GPL)
*/
#ifndef __PLAT_MACHINE_HARDWARE_H
#define __PLAT_MACHINE_HARDWARE_H
#ifndef __PLAT_MODE_MACHINE_HARDWARE_H
#define __PLAT_MODE_MACHINE_HARDWARE_H
#include <config.h>
#include <types.h>

View file

@ -0,0 +1,16 @@
/*
* Copyright 2014, General Dynamics C4 Systems
*
* This software may be distributed and modified according to the terms of
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
* See "LICENSE_GPLv2.txt" for details.
*
* @TAG(GD_GPL)
*/
#ifndef __PLAT_MACHINE_HARDWARE_H
#define __PLAT_MACHINE_HARDWARE_H
#include <plat_mode/machine/hardware.h>
#endif