From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33692) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URtf3-0006hV-41 for qemu-devel@nongnu.org; Mon, 15 Apr 2013 20:22:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1URtey-00079P-Tc for qemu-devel@nongnu.org; Mon, 15 Apr 2013 20:22:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58179) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URtey-00078c-KC for qemu-devel@nongnu.org; Mon, 15 Apr 2013 20:22:08 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3G0M8fq006654 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 15 Apr 2013 20:22:08 -0400 From: Laszlo Ersek Date: Tue, 16 Apr 2013 02:24:13 +0200 Message-Id: <1366071854-8917-7-git-send-email-lersek@redhat.com> In-Reply-To: <1366071854-8917-1-git-send-email-lersek@redhat.com> References: <1366071854-8917-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH v3 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: qemu-devel@nongnu.org, mst@redhat.com From: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Signed-off-by: Laszlo Ersek --- 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