aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ichwd/ichwd.c
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2010-11-27 00:26:19 +0000
committerEd Maste <emaste@FreeBSD.org>2010-11-27 00:26:19 +0000
commit84fe19c742a8414c1bf1ba8976163ea349f65a86 (patch)
treed04257e9690c056c1fd638be1fbea84b4dcec587 /sys/dev/ichwd/ichwd.c
parent38104ecc27e5e1358ff34ba3d592de770df4d1e5 (diff)
downloadsrc-84fe19c742a8414c1bf1ba8976163ea349f65a86.tar.gz
src-84fe19c742a8414c1bf1ba8976163ea349f65a86.zip
Fix build by correcting function name. Pointed out by dougb.
Notes
Notes: svn path=/head/; revision=215918
Diffstat (limited to 'sys/dev/ichwd/ichwd.c')
-rw-r--r--sys/dev/ichwd/ichwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ichwd/ichwd.c b/sys/dev/ichwd/ichwd.c
index 30f2f49eddb8..9ddec20c6180 100644
--- a/sys/dev/ichwd/ichwd.c
+++ b/sys/dev/ichwd/ichwd.c
@@ -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");