]> Git Repo - qemu.git/commitdiff
hw/sd/sdhci.c: Remove x-drive property
authorPeter Maydell <[email protected]>
Thu, 18 Feb 2016 14:16:18 +0000 (14:16 +0000)
committerPeter Maydell <[email protected]>
Thu, 18 Feb 2016 14:26:33 +0000 (14:26 +0000)
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 <[email protected]>
Reviewed-by: Alistair Francis <[email protected]>
Reviewed-by: Peter Crosthwaite <[email protected]>
Message-id: 1455646193[email protected]

hw/sd/sdhci.c

index 30e3bf4f3ccee7779a77181830c4b14224f62779..3d1eb854588edebff5898903b413bdaf5dd25ee8 100644 (file)
@@ -1220,12 +1220,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),
This page took 0.028125 seconds and 4 git commands to generate.