mirror of https://github.com/xemu-project/xemu.git
rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix
qemu-config.c doesn't contain any target-specific code, and the TARGET_I386 conditional code didn't get compiled as a result. Removing this enables the driftfix parameter for rtc. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
5e77aaa0d7
commit
027c9e21e2
|
@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = {
|
||||||
},{
|
},{
|
||||||
.name = "clock",
|
.name = "clock",
|
||||||
.type = QEMU_OPT_STRING,
|
.type = QEMU_OPT_STRING,
|
||||||
#ifdef TARGET_I386
|
|
||||||
},{
|
},{
|
||||||
.name = "driftfix",
|
.name = "driftfix",
|
||||||
.type = QEMU_OPT_STRING,
|
.type = QEMU_OPT_STRING,
|
||||||
#endif
|
|
||||||
},
|
},
|
||||||
{ /* end if list */ }
|
{ /* end if list */ }
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue