ioapic: Cleanup for QOM'ification

Some cleanups:
* ioapic_common.c: Rename 'register_types' to 'ioapic_common_register_types'
* Replace inline 'DEVICE(s)' with local 'DeviceState *dev' variable

Signed-off-by: xiaoqiang zhao <zxq_yx_007@163.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
xiaoqiang zhao 2013-11-05 18:16:04 +08:00 committed by Andreas Färber
parent 494c271784
commit f97718584b
3 changed files with 8 additions and 4 deletions

View file

@ -109,9 +109,9 @@ static const TypeInfo ioapic_common_type = {
.abstract = true,
};
static void register_types(void)
static void ioapic_common_register_types(void)
{
type_register_static(&ioapic_common_type);
}
type_init(register_types)
type_init(ioapic_common_register_types)