From owner-svn-src-head@FreeBSD.ORG Thu Dec 15 06:29:14 2011 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 C497A106566B; Thu, 15 Dec 2011 06:29:14 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 989F38FC1C; Thu, 15 Dec 2011 06:29:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pBF6TEOv033014; Thu, 15 Dec 2011 06:29:14 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pBF6TEgb033009; Thu, 15 Dec 2011 06:29:14 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201112150629.pBF6TEgb033009@svn.freebsd.org> From: Kevin Lo Date: Thu, 15 Dec 2011 06:29:14 +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: r228526 - in head/sys: dev/bxe dev/esp dev/twa xen/xenstore 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: Thu, 15 Dec 2011 06:29:14 -0000 Author: kevlo Date: Thu Dec 15 06:29:13 2011 New Revision: 228526 URL: http://svn.freebsd.org/changeset/base/228526 Log: s/timout/timeout Modified: head/sys/dev/bxe/bxe_reg.h head/sys/dev/esp/ncr53c9x.c head/sys/dev/twa/tw_osl.h head/sys/xen/xenstore/xenstore.c Modified: head/sys/dev/bxe/bxe_reg.h ============================================================================== --- head/sys/dev/bxe/bxe_reg.h Thu Dec 15 06:25:19 2011 (r228525) +++ head/sys/dev/bxe/bxe_reg.h Thu Dec 15 06:29:13 2011 (r228526) @@ -1594,7 +1594,7 @@ /* * [RW 1] Setting this bit enables a timer in the GRC block to timeout an * access that does not finish within - * ~misc_registers_grc_timout_val.grc_timeout_val cycles. When this bit is + * ~misc_registers_grc_timeout_val.grc_timeout_val cycles. When this bit is * cleared; this timeout is disabled. If this timeout occurs; the GRC shall * assert it attention output. */ Modified: head/sys/dev/esp/ncr53c9x.c ============================================================================== --- head/sys/dev/esp/ncr53c9x.c Thu Dec 15 06:25:19 2011 (r228525) +++ head/sys/dev/esp/ncr53c9x.c Thu Dec 15 06:29:13 2011 (r228526) @@ -316,7 +316,7 @@ ncr53c9x_attach(struct ncr53c9x_softc *s * The recommended timeout is 250ms. This register is loaded * with a value calculated as follows, from the docs: * - * (timout period) x (CLK frequency) + * (timeout period) x (CLK frequency) * reg = ------------------------------------- * 8192 x (Clock Conversion Factor) * Modified: head/sys/dev/twa/tw_osl.h ============================================================================== --- head/sys/dev/twa/tw_osl.h Thu Dec 15 06:25:19 2011 (r228525) +++ head/sys/dev/twa/tw_osl.h Thu Dec 15 06:29:13 2011 (r228526) @@ -153,7 +153,7 @@ struct twa_softc { struct mtx sim_lock_handle;/* sim lock shared with cam */ struct mtx *sim_lock;/* ptr to sim lock */ - struct callout watchdog_callout[2]; /* For command timout */ + struct callout watchdog_callout[2]; /* For command timeout */ TW_UINT32 watchdog_index; #ifdef TW_OSL_DEBUG Modified: head/sys/xen/xenstore/xenstore.c ============================================================================== --- head/sys/xen/xenstore/xenstore.c Thu Dec 15 06:25:19 2011 (r228525) +++ head/sys/xen/xenstore/xenstore.c Thu Dec 15 06:29:13 2011 (r228526) @@ -559,7 +559,7 @@ xs_read_store(void *tdata, unsigned len) * when msleep returns. */ error = msleep(xen_store, &xs.ring_lock, PCATCH|PDROP, - "xbread", /*timout*/0); + "xbread", /*timeout*/0); if (error && error != EWOULDBLOCK) return (error); continue;