svn commit: r248170 - head/sys/dev/acpica
Alexander Motin
mav at FreeBSD.org
Mon Mar 11 17:29:10 UTC 2013
Author: mav
Date: Mon Mar 11 17:29:09 2013
New Revision: 248170
URL: http://svnweb.freebsd.org/changeset/base/248170
Log:
Add "else" missed at r248154.
Modified:
head/sys/dev/acpica/acpi_hpet.c
Modified: head/sys/dev/acpica/acpi_hpet.c
==============================================================================
--- head/sys/dev/acpica/acpi_hpet.c Mon Mar 11 17:21:52 2013 (r248169)
+++ head/sys/dev/acpica/acpi_hpet.c Mon Mar 11 17:29:09 2013 (r248170)
@@ -675,7 +675,7 @@ hpet_attach(device_t dev)
if (t->pcpu_master >= 0) {
t->et.et_flags |= ET_FLAGS_PERCPU;
t->et.et_quality += 100;
- } if (mp_ncpus >= 8)
+ } else if (mp_ncpus >= 8)
t->et.et_quality -= 100;
if ((t->caps & HPET_TCAP_PER_INT) == 0)
t->et.et_quality -= 10;
More information about the svn-src-head
mailing list