TARGET_I386 is always defined if TARGET_X86_64 is defined
Patchworks-ID: 35378 Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
a3a766e7b3
commit
ce88f890bd
@ -74,7 +74,7 @@ typedef struct HPETState {
|
||||
uint64_t hpet_counter; /* main counter */
|
||||
} HPETState;
|
||||
|
||||
#if defined TARGET_I386 || defined TARGET_X86_64
|
||||
#if defined TARGET_I386
|
||||
extern uint32_t hpet_in_legacy_mode(void);
|
||||
extern void hpet_init(qemu_irq *irq);
|
||||
#endif
|
||||
|
@ -91,7 +91,7 @@ static void rtc_irq_raise(qemu_irq irq) {
|
||||
* mode is established while interrupt is raised. We want it to
|
||||
* be lowered in any case
|
||||
*/
|
||||
#if defined TARGET_I386 || defined TARGET_X86_64
|
||||
#if defined TARGET_I386
|
||||
if (!hpet_in_legacy_mode())
|
||||
#endif
|
||||
qemu_irq_raise(irq);
|
||||
@ -138,7 +138,7 @@ static void rtc_timer_update(RTCState *s, int64_t current_time)
|
||||
int enable_pie;
|
||||
|
||||
period_code = s->cmos_data[RTC_REG_A] & 0x0f;
|
||||
#if defined TARGET_I386 || defined TARGET_X86_64
|
||||
#if defined TARGET_I386
|
||||
/* disable periodic timer if hpet is in legacy mode, since interrupts are
|
||||
* disabled anyway.
|
||||
*/
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "virtio-blk.h"
|
||||
#include "qemu-config.h"
|
||||
|
||||
#if defined(TARGET_I386) || defined(TARGET_X86_64)
|
||||
#if defined(TARGET_I386)
|
||||
static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon,
|
||||
const char *devaddr,
|
||||
const char *opts_str)
|
||||
|
Loading…
Reference in New Issue
Block a user