diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-08 09:05:14 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-08 09:05:14 -0500 |
| commit | 220724ca4ada4e30bcfff326b62822a69c23e181 (patch) | |
| tree | c0bb1bdd3ec41c5945000cf43620725d2e00ffd8 /hw/spitz.c | |
| parent | d8ac46d950451a722fd6b1d5d0768c72bee87d47 (diff) | |
| parent | cfc606da0ddcef1f7228317b9f7dfa6c94c6c64f (diff) | |
| download | focaccia-qemu-220724ca4ada4e30bcfff326b62822a69c23e181.tar.gz focaccia-qemu-220724ca4ada4e30bcfff326b62822a69c23e181.zip | |
Merge remote-tracking branch 'kwolf/for-anthony' into staging
Diffstat (limited to 'hw/spitz.c')
| -rw-r--r-- | hw/spitz.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/hw/spitz.c b/hw/spitz.c index c05b5f7d56..0adae596b5 100644 --- a/hw/spitz.c +++ b/hw/spitz.c @@ -708,17 +708,13 @@ static void spitz_ssp_attach(PXA2xxState *cpu) static void spitz_microdrive_attach(PXA2xxState *cpu, int slot) { PCMCIACardState *md; - BlockDriverState *bs; DriveInfo *dinfo; dinfo = drive_get(IF_IDE, 0, 0); - if (!dinfo) + if (!dinfo || dinfo->media_cd) return; - bs = dinfo->bdrv; - if (bdrv_is_inserted(bs) && !bdrv_is_removable(bs)) { - md = dscm1xxxx_init(dinfo); - pxa2xx_pcmcia_attach(cpu->pcmcia[slot], md); - } + md = dscm1xxxx_init(dinfo); + pxa2xx_pcmcia_attach(cpu->pcmcia[slot], md); } /* Wm8750 and Max7310 on I2C */ |