From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=33664 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OtIHY-0006hn-I9 for qemu-devel@nongnu.org; Wed, 08 Sep 2010 06:53:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OtIHW-0003S9-Qk for qemu-devel@nongnu.org; Wed, 08 Sep 2010 06:53:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36297) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtIHW-0003Rt-Jq for qemu-devel@nongnu.org; Wed, 08 Sep 2010 06:53:34 -0400 From: Amit Shah Date: Wed, 8 Sep 2010 16:22:59 +0530 Message-Id: In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 3/4] rtc: Remove TARGET_I386 from qemu-config.c, enables driftfix List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Amit Shah , Anthony Liguori , qemu list 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 Signed-off-by: Anthony Liguori (cherry picked from commit 027c9e21e21bbe63f74ffb86381bb11315a1544c) Signed-off-by: Amit Shah --- qemu-config.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/qemu-config.c b/qemu-config.c index 95abe61..730ffd9 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -247,11 +247,9 @@ QemuOptsList qemu_rtc_opts = { },{ .name = "clock", .type = QEMU_OPT_STRING, -#ifdef TARGET_I386 },{ .name = "driftfix", .type = QEMU_OPT_STRING, -#endif }, { /* end if list */ } }, -- 1.7.2.2