From owner-svn-src-head@FreeBSD.ORG Thu Oct 6 16:13:47 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 F1493106566B; Thu, 6 Oct 2011 16:13:47 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E18F98FC12; Thu, 6 Oct 2011 16:13:47 +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 p96GDltn068021; Thu, 6 Oct 2011 16:13:47 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p96GDlZk068019; Thu, 6 Oct 2011 16:13:47 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201110061613.p96GDlZk068019@svn.freebsd.org> From: Wesley Shields Date: Thu, 6 Oct 2011 16:13:47 +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: r226064 - head/sys/dev/ata 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, 06 Oct 2011 16:13:48 -0000 Author: wxs (ports committer) Date: Thu Oct 6 16:13:47 2011 New Revision: 226064 URL: http://svn.freebsd.org/changeset/base/226064 Log: Fix a typo in a comment. Approved by: kib@ Modified: head/sys/dev/ata/ata-all.c Modified: head/sys/dev/ata/ata-all.c ============================================================================== --- head/sys/dev/ata/ata-all.c Thu Oct 6 15:10:48 2011 (r226063) +++ head/sys/dev/ata/ata-all.c Thu Oct 6 16:13:47 2011 (r226064) @@ -837,7 +837,7 @@ ata_boot_attach(void) mtx_lock(&Giant); /* newbus suckage it needs Giant */ - /* kick of probe and attach on all channels */ + /* kick off probe and attach on all channels */ for (ctlr = 0; ctlr < devclass_get_maxunit(ata_devclass); ctlr++) { if ((ch = devclass_get_softc(ata_devclass, ctlr))) { ata_identify(ch->dev);