]> git.proxmox.com Git - qemu.git/commitdiff
pxa: Fix typo "dettach"
authorAndreas Färber <afaerber@suse.de>
Wed, 17 Jul 2013 17:06:47 +0000 (19:06 +0200)
committerAndreas Färber <afaerber@suse.de>
Tue, 5 Nov 2013 17:06:51 +0000 (18:06 +0100)
Signed-off-by: Andreas Färber <afaerber@suse.de>
hw/misc/pxa2xx_pcmcia.c
include/hw/arm/pxa.h

index ef71a2af74ebaa534776e339620eee8b13f3fef5..76724a6ac695a133f54782bd208065996c7d3ce8 100644 (file)
@@ -178,7 +178,7 @@ int pxa2xx_pcmcia_attach(void *opaque, PCMCIACardState *card)
 }
 
 /* Eject card from the slot */
-int pxa2xx_pcmcia_dettach(void *opaque)
+int pxa2xx_pcmcia_detach(void *opaque)
 {
     PXA2xxPCMCIAState *s = (PXA2xxPCMCIAState *) opaque;
     if (!s->slot.attached)
index 668232cead9cb7f69d87a54db2e122209a1110b4..a4e1a66264671b2e248a4cd6ed3933689bccfed1 100644 (file)
@@ -97,7 +97,7 @@ typedef struct PXA2xxPCMCIAState PXA2xxPCMCIAState;
 PXA2xxPCMCIAState *pxa2xx_pcmcia_init(MemoryRegion *sysmem,
                                       hwaddr base);
 int pxa2xx_pcmcia_attach(void *opaque, PCMCIACardState *card);
-int pxa2xx_pcmcia_dettach(void *opaque);
+int pxa2xx_pcmcia_detach(void *opaque);
 void pxa2xx_pcmcia_set_irq_cb(void *opaque, qemu_irq irq, qemu_irq cd_irq);
 
 /* pxa2xx_keypad.c */