diff options
author | David 'Digit' Turner <digit@android.com> | 2011-02-23 13:32:37 +0100 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-02-23 17:05:34 +0100 |
commit | 462564f31bbdc9939bf1d2376e2782defa7ef655 (patch) | |
tree | 261958f81739fbfcf4228c05fdbcc6f854008286 /target-i386 | |
parent | fa59e01ddace99351b212b8d82700156776e27e6 (diff) | |
download | external_qemu-462564f31bbdc9939bf1d2376e2782defa7ef655.zip external_qemu-462564f31bbdc9939bf1d2376e2782defa7ef655.tar.gz external_qemu-462564f31bbdc9939bf1d2376e2782defa7ef655.tar.bz2 |
Minor cleanups for core/ui Makefile separation.
This patch contains minor cleanups that will be needed by
a few future patches that will improve the way core and ui
sources are separated and built.
- remove a few compiler warnings
- formatting
- remove the memcheck CONFIG_MEMCHECK checks (they later get in the way)
- refine hw/hw.h inclusion's of cpu.h (this comes from upstream)
- add missing definitions for PRUd64 and PRUx64 (used later)
- remove CONFIG_SHAPER test, replace with CONFIG_ANDROID instead.
- add missing strdup() calls.
Change-Id: Ic7d6681a51af718c298f0ee4bd884b1d8750f28e
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 4e7eb58..88547cb 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -181,7 +181,7 @@ #define HF2_VINTR_SHIFT 3 /* value of V_INTR_MASKING bit */ #define HF2_GIF_MASK (1 << HF2_GIF_SHIFT) -#define HF2_HIF_MASK (1 << HF2_HIF_SHIFT) +#define HF2_HIF_MASK (1 << HF2_HIF_SHIFT) #define HF2_NMI_MASK (1 << HF2_NMI_SHIFT) #define HF2_VINTR_MASK (1 << HF2_VINTR_SHIFT) @@ -409,7 +409,7 @@ #define CPUID_VENDOR_INTEL_3 0x6c65746e /* "ntel" */ #define CPUID_VENDOR_AMD_1 0x68747541 /* "Auth" */ -#define CPUID_VENDOR_AMD_2 0x69746e65 /* "enti" */ +#define CPUID_VENDOR_AMD_2 0x69746e65 /* "enti" */ #define CPUID_VENDOR_AMD_3 0x444d4163 /* "cAMD" */ #define CPUID_MWAIT_IBE (1 << 1) /* Interrupts can exit capability */ |