From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aAP8U-0005lU-MC for qemu-devel@nongnu.org; Sat, 19 Dec 2015 16:33:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aAP8R-0008P9-D7 for qemu-devel@nongnu.org; Sat, 19 Dec 2015 16:33:54 -0500 From: Peter Crosthwaite Date: Sat, 19 Dec 2015 13:33:41 -0800 Message-ID: <20151219213341.GB4164@pcrost-box> References: <1449851831-4966-1-git-send-email-peter.maydell@linaro.org> <1449851831-4966-2-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1449851831-4966-2-git-send-email-peter.maydell@linaro.org> Subject: Re: [Qemu-devel] [PATCH 01/10] hw/sd/sdhci.c: Remove x-drive property List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Kevin O'Connor , Peter Crosthwaite , Markus Armbruster , patches@linaro.org, qemu-devel@nongnu.org, Alistair Francis , qemu-arm@nongnu.org, Paolo Bonzini , "Edgar E. Iglesias" On Fri, Dec 11, 2015 at 04:37:02PM +0000, Peter Maydell wrote: > The following commits will remove support for the old sdhci-pci > command line syntax using the x-drive property: > -device sdhci-pci,x-drive=mydrive -drive id=mydrive,[...] > and replace it with an explicit sd device: > -device sdhci-pci -drive id=mydrive,[...] -device sd,drive=mydrive > > (This is OK because x-drive is experimental.) > > This commit removes the x-drive property so that old style > command lines will fail with a reasonable error message: > -device sdhci-pci,x-drive=mydrive: Property '.x-drive' not found > > Signed-off-by: Peter Maydell Reviewed-by: Peter Crosthwaite > --- > hw/sd/sdhci.c | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c > index 8612760..991c9b5 100644 > --- a/hw/sd/sdhci.c > +++ b/hw/sd/sdhci.c > @@ -1221,12 +1221,6 @@ const VMStateDescription sdhci_vmstate = { > /* Capabilities registers provide information on supported features of this > * specific host controller implementation */ > static Property sdhci_pci_properties[] = { > - /* > - * We currently fuse controller and card into a single device > - * model, but we intend to separate them. For that purpose, the > - * properties that belong to the card are marked as experimental. > - */ > - DEFINE_PROP_DRIVE("x-drive", SDHCIState, blk), > DEFINE_PROP_UINT32("capareg", SDHCIState, capareg, > SDHC_CAPAB_REG_DEFAULT), > DEFINE_PROP_UINT32("maxcurr", SDHCIState, maxcurr, 0), > -- > 1.9.1 >