Fix a typo when testing for the NO_C3 quirk.

MFC after:	3 days
This commit is contained in:
John Baldwin 2008-02-12 15:26:59 +00:00
parent af3c383a98
commit 7a31072193
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176205

View file

@ -766,7 +766,7 @@ acpi_cpu_startup(void *arg)
*/
for (i = 0; i < cpu_ndevices; i++) {
sc = device_get_softc(cpu_devices[i]);
if (cpu_quirks && CPU_QUIRK_NO_C3) {
if (cpu_quirks & CPU_QUIRK_NO_C3) {
sc->cpu_cx_count = sc->cpu_non_c3 + 1;
}
if (sc->cpu_cx_count > cpu_cx_count)