svn commit: r219948 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Thu Mar 24 04:57:35 UTC 2011


Author: adrian
Date: Thu Mar 24 04:57:35 2011
New Revision: 219948
URL: http://svn.freebsd.org/changeset/base/219948

Log:
  Fix a completely wrong variable reference.

Modified:
  head/sys/dev/ath/ah_osdep.c

Modified: head/sys/dev/ath/ah_osdep.c
==============================================================================
--- head/sys/dev/ath/ah_osdep.c	Thu Mar 24 01:24:35 2011	(r219947)
+++ head/sys/dev/ath/ah_osdep.c	Thu Mar 24 04:57:35 2011	(r219948)
@@ -87,7 +87,7 @@ TUNABLE_INT("hw.ath.hal.debug", &ath_hal
 
 int ath_hal_ar5416_biasadj = 0;
 SYSCTL_INT(_hw_ath_hal, OID_AUTO, ar5416_biasadj, CTLFLAG_RW,
-	&ath_hal_debug, 0, "Enable 2ghz AR5416 direction sensitivity"
+	&ath_hal_ar5416_biasadj, 0, "Enable 2ghz AR5416 direction sensitivity"
 	" bias adjust");
 
 /* NB: these are deprecated; they exist for now for compatibility */


More information about the svn-src-all mailing list