diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 13:01:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | b9c6a960808451d75acd9c048f418dd2c92ac59d (patch) | |
tree | 7b7cd650fae1418f6284fc7579762cf832c17fdf /src/fw/mtrr.c | |
parent | 490797e851af64481a998b80072554b75009483c (diff) | |
download | seabios-b9c6a960808451d75acd9c048f418dd2c92ac59d.tar.gz |
Split x86 specific functions out of util.c/h to new files x86.c/h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/fw/mtrr.c')
-rw-r--r-- | src/fw/mtrr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fw/mtrr.c b/src/fw/mtrr.c index 001e2755..855457a4 100644 --- a/src/fw/mtrr.c +++ b/src/fw/mtrr.c @@ -8,6 +8,7 @@ #include "config.h" // CONFIG_* #include "hw/pci.h" // pcimem_start #include "paravirt.h" // RamSize +#include "x86.h" // cpuid #define MSR_MTRRcap 0x000000fe #define MSR_MTRRfix64K_00000 0x00000250 |