From owner-svn-src-all@FreeBSD.ORG Wed May 13 16:19:05 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B95821065672; Wed, 13 May 2009 16:19:05 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A78908FC0C; Wed, 13 May 2009 16:19:05 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4DGJ5Rp061011; Wed, 13 May 2009 16:19:05 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4DGJ5t7061010; Wed, 13 May 2009 16:19:05 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200905131619.n4DGJ5t7061010@svn.freebsd.org> From: Nathan Whitehorn Date: Wed, 13 May 2009 16:19:05 +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: r192046 - head/sys/dev/bwi X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2009 16:19:06 -0000 Author: nwhitehorn Date: Wed May 13 16:19:05 2009 New Revision: 192046 URL: http://svn.freebsd.org/changeset/base/192046 Log: Add a comment to motivate my last change. Suggested by: sam, imp Modified: head/sys/dev/bwi/bwiphy.c Modified: head/sys/dev/bwi/bwiphy.c ============================================================================== --- head/sys/dev/bwi/bwiphy.c Wed May 13 15:09:01 2009 (r192045) +++ head/sys/dev/bwi/bwiphy.c Wed May 13 16:19:05 2009 (r192046) @@ -664,6 +664,8 @@ bwi_phy_init_11b_rev6(struct bwi_mac *ma for (ofs = 0xa8; ofs < 0xc8; ++ofs) { PHY_WRITE(mac, ofs, (val & 0x3f3f)); val += 0x202; + + /* XXX: delay 10 us to avoid PCI parity errors with BCM4318 */ DELAY(10); }