Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Dec 2008 03:45:54 +0000 (UTC)
From:      Sam Leffler <sam@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r186016 - head/sys/dev/ath/ath_hal/ar5212
Message-ID:  <200812130345.mBD3jstl016960@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sam
Date: Sat Dec 13 03:45:54 2008
New Revision: 186016
URL: http://svn.freebsd.org/changeset/base/186016

Log:
  fix static const order
  
  Obtained from:	netbsd

Modified:
  head/sys/dev/ath/ath_hal/ar5212/ar5111.c   (contents, props changed)

Modified: head/sys/dev/ath/ath_hal/ar5212/ar5111.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5212/ar5111.c	Sat Dec 13 03:45:00 2008	(r186015)
+++ head/sys/dev/ath/ath_hal/ar5212/ar5111.c	Sat Dec 13 03:45:54 2008	(r186016)
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5111.c,v 1.7 2008/11/10 04:08:03 sam Exp $
+ * $FreeBSD$
  */
 #include "opt_ah.h"
 
@@ -90,7 +90,7 @@ ar5111SetChannel(struct ath_hal *ah,  HA
 		uint16_t	channel5111;	/* 11a channel for 5111 */
 	} CHAN_INFO_2GHZ;
 
-	const static CHAN_INFO_2GHZ chan2GHzData[] = {
+	static const CHAN_INFO_2GHZ chan2GHzData[] = {
 		{ 1, 0x46, 96  },	/* 2312 -19 */
 		{ 1, 0x46, 97  },	/* 2317 -18 */
 		{ 1, 0x46, 98  },	/* 2322 -17 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812130345.mBD3jstl016960>