svn commit: r269897 - head/sys/dev/acpica

Neel Natu neel at FreeBSD.org
Wed Aug 13 00:18:17 UTC 2014


Author: neel
Date: Wed Aug 13 00:18:16 2014
New Revision: 269897
URL: http://svnweb.freebsd.org/changeset/base/269897

Log:
  Fix typo when displaying the HPET timer unit number.

Modified:
  head/sys/dev/acpica/acpi_hpet.c

Modified: head/sys/dev/acpica/acpi_hpet.c
==============================================================================
--- head/sys/dev/acpica/acpi_hpet.c	Wed Aug 13 00:14:26 2014	(r269896)
+++ head/sys/dev/acpica/acpi_hpet.c	Wed Aug 13 00:18:16 2014	(r269897)
@@ -558,7 +558,8 @@ hpet_attach(device_t dev)
 			    device_get_parent(device_get_parent(dev)), dev,
 			    &t->irq))) {
 				device_printf(dev,
-				    "Can't allocate interrupt for t%d.\n", j);
+				    "Can't allocate interrupt for t%d: %d\n",
+				    i, j);
 			}
 		}
 #endif


More information about the svn-src-head mailing list