svn commit: r215918 - head/sys/dev/ichwd
Ed Maste
emaste at FreeBSD.org
Sat Nov 27 00:26:20 UTC 2010
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");
More information about the svn-src-all
mailing list