From patchwork Mon Jun 27 18:19:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 921992 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p5RIKlgk001203 for ; Mon, 27 Jun 2011 18:20:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752117Ab1F0SUo (ORCPT ); Mon, 27 Jun 2011 14:20:44 -0400 Received: from fmmailgate02.web.de ([217.72.192.227]:60786 "EHLO fmmailgate02.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753338Ab1F0SUl (ORCPT ); Mon, 27 Jun 2011 14:20:41 -0400 Received: from smtp03.web.de ( [172.20.0.65]) by fmmailgate02.web.de (Postfix) with ESMTP id B398F1A3CDFAE; Mon, 27 Jun 2011 20:20:28 +0200 (CEST) Received: from [2.204.233.154] (helo=localhost.localdomain) by smtp03.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.110 #2) id 1QbGQ8-0007wf-00; Mon, 27 Jun 2011 20:20:28 +0200 From: Jan Kiszka To: Avi Kivity , Marcelo Tosatti Cc: kvm@vger.kernel.org, "Michael S. Tsirkin" , Alex Williamson Subject: [PATCH 06/13] qemu-kvm: Drop or replace useless device-assignment.h inclusions Date: Mon, 27 Jun 2011 20:19:49 +0200 Message-Id: X-Mailer: git-send-email 1.7.1 In-Reply-To: References: In-Reply-To: References: X-Sender: jan.kiszka@web.de X-Provags-ID: V01U2FsdGVkX18ZuyJ32HrCNKuNEG7YDU5KKdyAmmoUMztvfeyS Wv/Cf2Kcu0lH06peYW5gs+YP5yzmytHX19f3Rpn5BxiYVzOCQB wpzgmfuzQ= Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 27 Jun 2011 18:20:48 +0000 (UTC) From: Jan Kiszka Signed-off-by: Jan Kiszka --- hw/pc.c | 1 - hw/pci-hotplug.c | 1 - vl.c | 2 +- 3 files changed, 1 insertions(+), 3 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index c4e3f26..c0a88e1 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -39,7 +39,6 @@ #include "msix.h" #include "sysbus.h" #include "sysemu.h" -#include "device-assignment.h" #include "kvm.h" #include "blockdev.h" #include "ui/qemu-spice.h" diff --git a/hw/pci-hotplug.c b/hw/pci-hotplug.c index 76ce539..b59be2a 100644 --- a/hw/pci-hotplug.c +++ b/hw/pci-hotplug.c @@ -31,7 +31,6 @@ #include "scsi.h" #include "virtio-blk.h" #include "qemu-config.h" -#include "device-assignment.h" #include "blockdev.h" #if defined(TARGET_I386) diff --git a/vl.c b/vl.c index dd870e6..7708254 100644 --- a/vl.c +++ b/vl.c @@ -145,7 +145,7 @@ int main(int argc, char **argv) #include "qemu-config.h" #include "qemu-objects.h" #include "qemu-options.h" -#include "hw/device-assignment.h" +#include "kvm.h" #ifdef CONFIG_VIRTFS #include "fsdev/qemu-fsdev.h" #endif