mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
cpufreq: Unbreak build.
This commit is contained in:
parent
21d69a144e
commit
7c96220162
1 changed files with 2 additions and 1 deletions
|
|
@ -519,7 +519,8 @@ cpufreq_dt_attach(device_t dev)
|
|||
continue;
|
||||
if (cpu == sc->cpu) {
|
||||
DEBUG(dev, "Skipping our cpu\n");
|
||||
CPU_SET(cpu++, &sc->cpus);
|
||||
CPU_SET(cpu, &sc->cpus);
|
||||
cpu++;
|
||||
continue;
|
||||
}
|
||||
DEBUG(dev, "Testing CPU %d\n", cpu);
|
||||
|
|
|
|||
Loading…
Reference in a new issue