Date: Thu, 24 Mar 2011 04:57:35 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r219948 - head/sys/dev/ath Message-ID: <201103240457.p2O4vZlf017964@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201103240457.p2O4vZlf017964>