summaryrefslogtreecommitdiffstats
path: root/qemu/hw/pcmcia/pcmcia.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/hw/pcmcia/pcmcia.c')
-rw-r--r--qemu/hw/pcmcia/pcmcia.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/qemu/hw/pcmcia/pcmcia.c b/qemu/hw/pcmcia/pcmcia.c
deleted file mode 100644
index 195672186..000000000
--- a/qemu/hw/pcmcia/pcmcia.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * PCMCIA emulation
- *
- * Copyright 2013 SUSE LINUX Products GmbH
- */
-
-#include "qemu/osdep.h"
-#include "qemu-common.h"
-#include "hw/hw.h"
-#include "hw/pcmcia.h"
-
-static const TypeInfo pcmcia_card_type_info = {
- .name = TYPE_PCMCIA_CARD,
- .parent = TYPE_DEVICE,
- .instance_size = sizeof(PCMCIACardState),
- .abstract = true,
- .class_size = sizeof(PCMCIACardClass),
-};
-
-static void pcmcia_register_types(void)
-{
- type_register_static(&pcmcia_card_type_info);
-}
-
-type_init(pcmcia_register_types)