mb/emulation/qemu-i440fx: Refactor `fw_cfg_max_cpus()`
Return 0 instead of -1 in case of error. Both values indicate an error has happened. Adapt `cpu_bus_scan()` accordingly. Change-Id: I0f83fdc41c20ed3aae80829432fc84024f5b9b47 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58918 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
04c497a6ba
commit
d16d00b71a
|
@ -133,7 +133,7 @@ int fw_cfg_max_cpus(void)
|
||||||
unsigned short max_cpus;
|
unsigned short max_cpus;
|
||||||
|
|
||||||
if (!fw_cfg_present())
|
if (!fw_cfg_present())
|
||||||
return -1;
|
return 0;
|
||||||
|
|
||||||
fw_cfg_get(FW_CFG_MAX_CPUS, &max_cpus, sizeof(max_cpus));
|
fw_cfg_get(FW_CFG_MAX_CPUS, &max_cpus, sizeof(max_cpus));
|
||||||
return max_cpus;
|
return max_cpus;
|
||||||
|
|
|
@ -265,11 +265,11 @@ static void cpu_bus_init(struct device *dev)
|
||||||
|
|
||||||
static void cpu_bus_scan(struct device *bus)
|
static void cpu_bus_scan(struct device *bus)
|
||||||
{
|
{
|
||||||
int max_cpus = fw_cfg_max_cpus();
|
unsigned int max_cpus = fw_cfg_max_cpus();
|
||||||
struct device *cpu;
|
struct device *cpu;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (max_cpus < 0)
|
if (max_cpus == 0)
|
||||||
return;
|
return;
|
||||||
/*
|
/*
|
||||||
* Do not install more CPUs than supported by coreboot.
|
* Do not install more CPUs than supported by coreboot.
|
||||||
|
|
Loading…
Reference in New Issue