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:
Emmanuel Vadot 2020-03-09 02:30:16 +00:00
parent d970778e6f
commit 21d69a144e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=358799

View File

@ -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);