MAINTAINERS: mark megasas as maintained
[qemu/ar7.git] / hw / pcmcia / pcmcia.c
blob78efe5a67af3bd38cd35d304f1b1cc213e7fcc89
1 /*
2 * PCMCIA emulation
4 * Copyright 2013 SUSE LINUX Products GmbH
5 */
7 #include "qemu-common.h"
8 #include "hw/hw.h"
9 #include "hw/pcmcia.h"
11 static const TypeInfo pcmcia_card_type_info = {
12 .name = TYPE_PCMCIA_CARD,
13 .parent = TYPE_DEVICE,
14 .instance_size = sizeof(PCMCIACardState),
15 .abstract = true,
16 .class_size = sizeof(PCMCIACardClass),
19 static void pcmcia_register_types(void)
21 type_register_static(&pcmcia_card_type_info);
24 type_init(pcmcia_register_types)