mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
cpufreq_dt: Fix r358555
Before skipping the current cpu when trying to find the ones that have the same opp, record that this one have this opp. Reported by: mmel MFC after: 2 weeks X-MFC-With: r358555
This commit is contained in:
parent
d970778e6f
commit
21d69a144e
1 changed files with 1 additions and 1 deletions
|
|
@ -519,7 +519,7 @@ cpufreq_dt_attach(device_t dev)
|
|||
continue;
|
||||
if (cpu == sc->cpu) {
|
||||
DEBUG(dev, "Skipping our cpu\n");
|
||||
cpu++;
|
||||
CPU_SET(cpu++, &sc->cpus);
|
||||
continue;
|
||||
}
|
||||
DEBUG(dev, "Testing CPU %d\n", cpu);
|
||||
|
|
|
|||
Loading…
Reference in a new issue