Skip to content

Commit 4be8bfc

Browse files
philmdvivier
authored andcommitted
hw/i386/acpi-build: Fix a typo
Fix 'hotplugabble' -> 'hotpluggable' typo. Reviewed-by: Ani Sinha <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> Message-Id: <[email protected]> Signed-off-by: Laurent Vivier <[email protected]>
1 parent fae0b0d commit 4be8bfc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hw/i386/acpi-build.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,7 @@ build_srat(GArray *table_data, BIOSLinker *linker, MachineState *machine)
19161916
PCMachineState *pcms = PC_MACHINE(machine);
19171917
int nb_numa_nodes = machine->numa_state->num_nodes;
19181918
NodeInfo *numa_info = machine->numa_state->nodes;
1919-
ram_addr_t hotplugabble_address_space_size =
1919+
ram_addr_t hotpluggable_address_space_size =
19201920
object_property_get_int(OBJECT(pcms), PC_MACHINE_DEVMEM_REGION_SIZE,
19211921
NULL);
19221922

@@ -2022,10 +2022,10 @@ build_srat(GArray *table_data, BIOSLinker *linker, MachineState *machine)
20222022
* Memory devices may override proximity set by this entry,
20232023
* providing _PXM method if necessary.
20242024
*/
2025-
if (hotplugabble_address_space_size) {
2025+
if (hotpluggable_address_space_size) {
20262026
numamem = acpi_data_push(table_data, sizeof *numamem);
20272027
build_srat_memory(numamem, machine->device_memory->base,
2028-
hotplugabble_address_space_size, nb_numa_nodes - 1,
2028+
hotpluggable_address_space_size, nb_numa_nodes - 1,
20292029
MEM_AFFINITY_HOTPLUGGABLE | MEM_AFFINITY_ENABLED);
20302030
}
20312031

0 commit comments

Comments
 (0)