summaryrefslogtreecommitdiffstats
path: root/src/hw/pcmcia/pcmcia.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hw/pcmcia/pcmcia.c')
-rw-r--r--src/hw/pcmcia/pcmcia.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/hw/pcmcia/pcmcia.c b/src/hw/pcmcia/pcmcia.c
new file mode 100644
index 0000000..78efe5a
--- /dev/null
+++ b/src/hw/pcmcia/pcmcia.c
@@ -0,0 +1,24 @@
+/*
+ * PCMCIA emulation
+ *
+ * Copyright 2013 SUSE LINUX Products GmbH
+ */
+
+#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)
OpenPOWER on IntegriCloud