qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/2] rtc: Parse the 'driftfix' option only for TARGE


From: Amit Shah
Subject: [Qemu-devel] [PATCH 1/2] rtc: Parse the 'driftfix' option only for TARGET_I386
Date: Wed, 23 Jun 2010 19:59:46 +0530

The driftfix option is only useful for Windows guests, and for the x86
architecture, so limit the option parsing to TARGET_I386. This ifdef
conditional is moved from qemu-config.c to vl.c. The next patch will fix
a bug where the driftfix option wasn't exposed at all even to the x86
architecture.

Signed-off-by: Amit Shah <address@hidden>
---
 vl.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/vl.c b/vl.c
index 920717a..f9c8086 100644
--- a/vl.c
+++ b/vl.c
@@ -418,6 +418,7 @@ static void configure_rtc(QemuOpts *opts)
             exit(1);
         }
     }
+#ifdef TARGET_I386
     value = qemu_opt_get(opts, "driftfix");
     if (value) {
         if (!strcmp(value, "slew")) {
@@ -429,6 +430,7 @@ static void configure_rtc(QemuOpts *opts)
             exit(1);
         }
     }
+#endif
 }
 
 /***********************************************************/
-- 
1.7.0.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]