From owner-svn-src-head@FreeBSD.ORG Sat Nov 27 00:26:20 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17C39106564A; Sat, 27 Nov 2010 00:26:20 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 067F08FC13; Sat, 27 Nov 2010 00:26:20 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oAR0QJHJ000817; Sat, 27 Nov 2010 00:26:19 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oAR0QJoh000815; Sat, 27 Nov 2010 00:26:19 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201011270026.oAR0QJoh000815@svn.freebsd.org> From: Ed Maste Date: Sat, 27 Nov 2010 00:26:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r215918 - head/sys/dev/ichwd X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Nov 2010 00:26:20 -0000 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");