xbox: Set properties with device_class_set_props

Applying change 4f67d30b5e to Xbox
hardware.
This commit is contained in:
Matt Borgerson 2020-05-01 02:45:35 -07:00
parent f0286acbd2
commit bf51b0a9c0
2 changed files with 2 additions and 2 deletions

View File

@ -997,7 +997,7 @@ static void nvnet_class_init(ObjectClass *klass, void *data)
dc->desc = "nForce Ethernet Controller";
dc->reset = qdev_nvnet_reset;
dc->props = nvnet_properties;
device_class_set_props(dc, nvnet_properties);
}
static Property nvnet_properties[] = {

View File

@ -618,7 +618,7 @@ static void usb_xbox_gamepad_class_initfn(ObjectClass *klass, void *data)
usb_xid_class_initfn(klass, data);
set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
dc->vmsd = &vmstate_usb_xbox;
dc->props = xid_sdl_properties;
device_class_set_props(dc, xid_sdl_properties);
dc->desc = "Microsoft Xbox Controller";
}