From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38930) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USvJj-00036z-9Z for qemu-devel@nongnu.org; Thu, 18 Apr 2013 16:20:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1USvJe-0000op-HK for qemu-devel@nongnu.org; Thu, 18 Apr 2013 16:20:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:22888) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USvJe-0000og-A2 for qemu-devel@nongnu.org; Thu, 18 Apr 2013 16:20:22 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3IKKL1W021814 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 18 Apr 2013 16:20:21 -0400 From: Laszlo Ersek Date: Thu, 18 Apr 2013 22:22:23 +0200 Message-Id: <1366316544-1428-7-git-send-email-lersek@redhat.com> In-Reply-To: <1366316544-1428-1-git-send-email-lersek@redhat.com> References: <1366316544-1428-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH v4 6/7] hw/i386/pc.c: move IO_APIC_DEFAULT_ADDRESS to include/hw/i386/apic.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: mst@redhat.com, qemu-devel@nongnu.org From: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Signed-off-by: Laszlo Ersek Acked-by: Michael S. Tsirkin --- include/hw/i386/apic.h | 2 ++ hw/i386/pc.c | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/hw/i386/apic.h b/include/hw/i386/apic.h index 1d48e02..edbb37f 100644 --- a/include/hw/i386/apic.h +++ b/include/hw/i386/apic.h @@ -26,6 +26,8 @@ void apic_designate_bsp(DeviceState *d); /* pc.c */ DeviceState *cpu_get_current_apic(void); +#define IO_APIC_DEFAULT_ADDRESS 0xfec00000 + /* cpu.c */ bool cpu_is_bsp(X86CPU *cpu); diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 3c12b55..8727489 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -73,8 +73,6 @@ #define FW_CFG_E820_TABLE (FW_CFG_ARCH_LOCAL + 3) #define FW_CFG_HPET (FW_CFG_ARCH_LOCAL + 4) -#define IO_APIC_DEFAULT_ADDRESS 0xfec00000 - #define E820_NR_ENTRIES 16 struct e820_entry { -- 1.7.1