diff options
| author | Wei Yang <richardw.yang@linux.intel.com> | 2019-01-24 15:36:26 +0800 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2019-01-24 13:34:20 +0100 |
| commit | 285816d76f37c412f391fa14a2b28a35b7cb134e (patch) | |
| tree | dbc845e71e72bb045b525f424fc32025e443fac8 | |
| parent | fbf7b20bdec6643dc6fb2b89beda677a922c1d34 (diff) | |
| download | focaccia-qemu-285816d76f37c412f391fa14a2b28a35b7cb134e.tar.gz focaccia-qemu-285816d76f37c412f391fa14a2b28a35b7cb134e.zip | |
hw/i386/pc.c: fix one typo in function name
Rename pc_get_hotpug_handler to pc_get_hotplug_handler. No functional change. Signed-off-by: Wei Yang <richardw.yang@linux.intel.com> Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Message-Id: <20190124073626.20534-1-richardw.yang@linux.intel.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
| -rw-r--r-- | hw/i386/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 73d688f842..747548b7aa 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -2285,7 +2285,7 @@ static void pc_machine_device_unplug_cb(HotplugHandler *hotplug_dev, } } -static HotplugHandler *pc_get_hotpug_handler(MachineState *machine, +static HotplugHandler *pc_get_hotplug_handler(MachineState *machine, DeviceState *dev) { if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM) || @@ -2615,7 +2615,7 @@ static void pc_machine_class_init(ObjectClass *oc, void *data) pcmc->save_tsc_khz = true; pcmc->linuxboot_dma_enabled = true; assert(!mc->get_hotplug_handler); - mc->get_hotplug_handler = pc_get_hotpug_handler; + mc->get_hotplug_handler = pc_get_hotplug_handler; mc->cpu_index_to_instance_props = pc_cpu_index_to_props; mc->get_default_cpu_node_id = pc_get_default_cpu_node_id; mc->possible_cpu_arch_ids = pc_possible_cpu_arch_ids; |