From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53407) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gX6Ob-0002fn-1U for qemu-devel@nongnu.org; Wed, 12 Dec 2018 10:25:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gX6OW-0001ia-48 for qemu-devel@nongnu.org; Wed, 12 Dec 2018 10:25:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35468) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gX6OU-0001gC-4P for qemu-devel@nongnu.org; Wed, 12 Dec 2018 10:25:51 -0500 References: <1543851204-41186-1-git-send-email-pbonzini@redhat.com> <1543851204-41186-23-git-send-email-pbonzini@redhat.com> From: Paolo Bonzini Message-ID: <217295f3-ca0e-af08-face-08144088e27d@redhat.com> Date: Wed, 12 Dec 2018 16:25:41 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 22/71] tests/libqos: sdhci driver and interface nodes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , qemu-devel@nongnu.org Cc: Thomas Huth , Emanuele Giuseppe Esposito , Laurent Vivier On 12/12/18 15:35, Philippe Mathieu-Daud=C3=A9 wrote: >> +} >> + >> +static void qsdhci_register_nodes(void) >> +{ >> + QPCIAddress addr =3D { >> + .devfn =3D QPCI_DEVFN(4, 0), >> + .vendor_id =3D PCI_VENDOR_ID_REDHAT, >> + .device_id =3D PCI_DEVICE_ID_REDHAT_SDHCI, >> + }; >> + >> + QOSGraphEdgeOptions opts =3D { >> + .extra_device_opts =3D "addr=3D04.0", > Shouldn't this be formatted from the previous QPCIAddress? >=20 Maybe, but there isn't a way to couple the two for now. A device address allocator is on the todo list. :) Paolo