mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
hw/i386/pc: fix code style issues on functions that will be moved out
Fix code style issues detected by checkpatch.pl on functions that will be moved out to x86.c. Signed-off-by: Sergio Lopez <slp@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
81ef68e44c
commit
62a188546f
1 changed files with 29 additions and 24 deletions
17
hw/i386/pc.c
17
hw/i386/pc.c
|
@ -866,7 +866,8 @@ static void handle_a20_line_change(void *opaque, int irq, int level)
|
|||
x86_cpu_set_a20(cpu, level);
|
||||
}
|
||||
|
||||
/* Calculates initial APIC ID for a specific CPU index
|
||||
/*
|
||||
* Calculates initial APIC ID for a specific CPU index
|
||||
*
|
||||
* Currently we need to be able to calculate the APIC ID from the CPU index
|
||||
* alone (without requiring a CPU object), as the QEMU<->Seabios interfaces have
|
||||
|
@ -1216,9 +1217,11 @@ static void x86_load_linux(PCMachineState *pcms,
|
|||
}
|
||||
|
||||
/* loader type */
|
||||
/* High nybble = B reserved for QEMU; low nybble is revision number.
|
||||
If this code is substantially changed, you may want to consider
|
||||
incrementing the revision. */
|
||||
/*
|
||||
* High nybble = B reserved for QEMU; low nybble is revision number.
|
||||
* If this code is substantially changed, you may want to consider
|
||||
* incrementing the revision.
|
||||
*/
|
||||
if (protocol >= 0x200) {
|
||||
header[0x210] = 0xB0;
|
||||
}
|
||||
|
@ -1507,7 +1510,8 @@ void x86_cpus_init(PCMachineState *pcms)
|
|||
|
||||
x86_cpu_set_default_version(pcmc->default_cpu_version);
|
||||
|
||||
/* Calculates the limit to CPU APIC ID values
|
||||
/*
|
||||
* Calculates the limit to CPU APIC ID values
|
||||
*
|
||||
* Limit for the APIC ID value, so that all
|
||||
* CPU APIC IDs are < pcms->apic_id_limit.
|
||||
|
@ -2725,7 +2729,8 @@ static const CPUArchIdList *x86_possible_cpu_arch_ids(MachineState *ms)
|
|||
|
||||
ms->possible_cpus->cpus[i].type = ms->cpu_type;
|
||||
ms->possible_cpus->cpus[i].vcpus_count = 1;
|
||||
ms->possible_cpus->cpus[i].arch_id = x86_cpu_apic_id_from_index(pcms, i);
|
||||
ms->possible_cpus->cpus[i].arch_id =
|
||||
x86_cpu_apic_id_from_index(pcms, i);
|
||||
x86_topo_ids_from_apicid(ms->possible_cpus->cpus[i].arch_id,
|
||||
pcms->smp_dies, ms->smp.cores,
|
||||
ms->smp.threads, &topo);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue