mirror of https://github.com/xqemu/xqemu.git
dev-storage: Fix the unusual function name
The function name of usb_msd_{realize,unrealize}_*, usb_msd_class_initfn_* are unusual. Rename it to usb_msd_*_{realize,unrealize}, usb_msd_class_*_initfn. Cc: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 11e6003433abce35f3f4970e1acc71ee92dbcf51.1511317952.git.maozy.fnst@cn.fujitsu.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
ceff3e1f01
commit
6db3ea39e2
|
@ -596,7 +596,7 @@ static void usb_msd_unrealize_storage(USBDevice *dev, Error **errp)
|
||||||
object_unref(OBJECT(&s->bus));
|
object_unref(OBJECT(&s->bus));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void usb_msd_realize_storage(USBDevice *dev, Error **errp)
|
static void usb_msd_storage_realize(USBDevice *dev, Error **errp)
|
||||||
{
|
{
|
||||||
MSDState *s = USB_STORAGE_DEV(dev);
|
MSDState *s = USB_STORAGE_DEV(dev);
|
||||||
BlockBackend *blk = s->conf.blk;
|
BlockBackend *blk = s->conf.blk;
|
||||||
|
@ -643,14 +643,14 @@ static void usb_msd_realize_storage(USBDevice *dev, Error **errp)
|
||||||
s->scsi_dev = scsi_dev;
|
s->scsi_dev = scsi_dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void usb_msd_unrealize_bot(USBDevice *dev, Error **errp)
|
static void usb_msd_bot_unrealize(USBDevice *dev, Error **errp)
|
||||||
{
|
{
|
||||||
MSDState *s = USB_STORAGE_DEV(dev);
|
MSDState *s = USB_STORAGE_DEV(dev);
|
||||||
|
|
||||||
object_unref(OBJECT(&s->bus));
|
object_unref(OBJECT(&s->bus));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void usb_msd_realize_bot(USBDevice *dev, Error **errp)
|
static void usb_msd_bot_realize(USBDevice *dev, Error **errp)
|
||||||
{
|
{
|
||||||
MSDState *s = USB_STORAGE_DEV(dev);
|
MSDState *s = USB_STORAGE_DEV(dev);
|
||||||
DeviceState *d = DEVICE(dev);
|
DeviceState *d = DEVICE(dev);
|
||||||
|
@ -764,12 +764,12 @@ static void usb_msd_class_initfn_common(ObjectClass *klass, void *data)
|
||||||
dc->vmsd = &vmstate_usb_msd;
|
dc->vmsd = &vmstate_usb_msd;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void usb_msd_class_initfn_storage(ObjectClass *klass, void *data)
|
static void usb_msd_class_storage_initfn(ObjectClass *klass, void *data)
|
||||||
{
|
{
|
||||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||||
USBDeviceClass *uc = USB_DEVICE_CLASS(klass);
|
USBDeviceClass *uc = USB_DEVICE_CLASS(klass);
|
||||||
|
|
||||||
uc->realize = usb_msd_realize_storage;
|
uc->realize = usb_msd_storage_realize;
|
||||||
uc->unrealize = usb_msd_unrealize_storage;
|
uc->unrealize = usb_msd_unrealize_storage;
|
||||||
dc->props = msd_properties;
|
dc->props = msd_properties;
|
||||||
}
|
}
|
||||||
|
@ -828,26 +828,26 @@ static void usb_msd_instance_init(Object *obj)
|
||||||
object_property_set_int(obj, -1, "bootindex", NULL);
|
object_property_set_int(obj, -1, "bootindex", NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void usb_msd_class_initfn_bot(ObjectClass *klass, void *data)
|
static void usb_msd_class_bot_initfn(ObjectClass *klass, void *data)
|
||||||
{
|
{
|
||||||
USBDeviceClass *uc = USB_DEVICE_CLASS(klass);
|
USBDeviceClass *uc = USB_DEVICE_CLASS(klass);
|
||||||
|
|
||||||
uc->realize = usb_msd_realize_bot;
|
uc->realize = usb_msd_bot_realize;
|
||||||
uc->unrealize = usb_msd_unrealize_bot;
|
uc->unrealize = usb_msd_bot_unrealize;
|
||||||
uc->attached_settable = true;
|
uc->attached_settable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const TypeInfo msd_info = {
|
static const TypeInfo msd_info = {
|
||||||
.name = "usb-storage",
|
.name = "usb-storage",
|
||||||
.parent = TYPE_USB_STORAGE,
|
.parent = TYPE_USB_STORAGE,
|
||||||
.class_init = usb_msd_class_initfn_storage,
|
.class_init = usb_msd_class_storage_initfn,
|
||||||
.instance_init = usb_msd_instance_init,
|
.instance_init = usb_msd_instance_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const TypeInfo bot_info = {
|
static const TypeInfo bot_info = {
|
||||||
.name = "usb-bot",
|
.name = "usb-bot",
|
||||||
.parent = TYPE_USB_STORAGE,
|
.parent = TYPE_USB_STORAGE,
|
||||||
.class_init = usb_msd_class_initfn_bot,
|
.class_init = usb_msd_class_bot_initfn,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void usb_msd_register_types(void)
|
static void usb_msd_register_types(void)
|
||||||
|
|
Loading…
Reference in New Issue