Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Nov 2010 00:26:19 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215918 - head/sys/dev/ichwd
Message-ID:  <201011270026.oAR0QJoh000815@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Sat Nov 27 00:26:19 2010
New Revision: 215918
URL: http://svn.freebsd.org/changeset/base/215918

Log:
  Fix build by correcting function name.  Pointed out by dougb.

Modified:
  head/sys/dev/ichwd/ichwd.c

Modified: head/sys/dev/ichwd/ichwd.c
==============================================================================
--- head/sys/dev/ichwd/ichwd.c	Sat Nov 27 00:26:08 2010	(r215917)
+++ head/sys/dev/ichwd/ichwd.c	Sat Nov 27 00:26:19 2010	(r215918)
@@ -523,7 +523,7 @@ ichwd_attach(device_t dev)
 	 * Determine if we are coming up after a watchdog-induced reset.
 	 * This bit is cleared in ichwd_sts_reset().
 	 */
-	if ((ich_read_tco_2(sc, TCO2_STS) & TCO_SECOND_TO_STS) != 0)
+	if ((ichwd_read_tco_2(sc, TCO2_STS) & TCO_SECOND_TO_STS) != 0)
 		device_printf(dev,
 		    "resuming after hardware watchdog timeout\n");
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011270026.oAR0QJoh000815>