Author: manu
Date: Mon Mar 9 03:34:16 2020
New Revision: 358800
URL: https://svnweb.freebsd.org/changeset/base/358800
Log:
cpufreq: Unbreak build.
Modified:
head/sys/dev/cpufreq/cpufreq_dt.c
Modified: head/sys/dev/cpufreq/cpufreq_dt.c
==============================================================================
--- head/sys/dev/cpufreq/cpufreq_dt.c Mon Mar 9 02:30:16 2020
(r358799)
+++ head/sys/dev/cpufreq/cpufreq_dt.c Mon Mar 9 03:34:16 2020
(r358800)
@@ -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);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"