From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MPJoZ-0005Yg-EK for qemu-devel@nongnu.org; Fri, 10 Jul 2009 13:23:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MPJoU-0005Qw-Db for qemu-devel@nongnu.org; Fri, 10 Jul 2009 13:23:14 -0400 Received: from [199.232.76.173] (port=33148 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MPJoU-0005QY-7T for qemu-devel@nongnu.org; Fri, 10 Jul 2009 13:23:10 -0400 Received: from mx20.gnu.org ([199.232.41.8]:37586) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MPJoT-0005V7-W3 for qemu-devel@nongnu.org; Fri, 10 Jul 2009 13:23:10 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MPJoT-0004RT-AQ for qemu-devel@nongnu.org; Fri, 10 Jul 2009 13:23:09 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [PATCH 04/13] qdev: add generic qdev_device_add() Date: Fri, 10 Jul 2009 18:23:06 +0100 References: <1247225179-5495-1-git-send-email-kraxel@redhat.com> <1247225179-5495-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1247225179-5495-5-git-send-email-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200907101823.07096.paul@codesourcery.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann On Friday 10 July 2009, Gerd Hoffmann wrote: > Will be used for -device command line. I think this is going in the wrong direction. The device tree provides us with a standard way of identifying which bus to add a device to. We should be removing uses of pci_create, not adding new ones. Paul