From owner-svn-src-head@FreeBSD.ORG Wed Feb 11 22:34:22 2009 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 8CDAA106566C; Wed, 11 Feb 2009 22:34:22 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B5DD8FC1B; Wed, 11 Feb 2009 22:34:22 +0000 (UTC) (envelope-from sam@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 n1BMYMmQ038076; Wed, 11 Feb 2009 22:34:22 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1BMYMwJ038075; Wed, 11 Feb 2009 22:34:22 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200902112234.n1BMYMwJ038075@svn.freebsd.org> From: Sam Leffler Date: Wed, 11 Feb 2009 22:34:22 +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: r188504 - head/sys/dev/ath/ath_hal 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: Wed, 11 Feb 2009 22:34:23 -0000 Author: sam Date: Wed Feb 11 22:34:22 2009 New Revision: 188504 URL: http://svn.freebsd.org/changeset/base/188504 Log: fix both instances of name Pointy hat: sam Modified: head/sys/dev/ath/ath_hal/ah_internal.h Modified: head/sys/dev/ath/ath_hal/ah_internal.h ============================================================================== --- head/sys/dev/ath/ath_hal/ah_internal.h Wed Feb 11 22:29:09 2009 (r188503) +++ head/sys/dev/ath/ath_hal/ah_internal.h Wed Feb 11 22:34:22 2009 (r188504) @@ -79,7 +79,7 @@ struct ath_hal_chip { }; #ifndef AH_CHIP #define AH_CHIP(_name, _probe, _attach) \ -static struct ath_hal_chip name##_chip = { \ +static struct ath_hal_chip _name##_chip = { \ .name = #_name, \ .probe = _probe, \ .attach = _attach \