diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2004-01-07 19:04:42 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2004-01-07 19:04:42 +0000 |
| commit | 8c0370b75d57e2fa51aa55e20d64399964a61b90 (patch) | |
| tree | dfae8e2885a555639168eb00aad55e457087b522 | |
| parent | e325e5306941b8e6f205111c62b327de4fcae326 (diff) | |
Notes
| -rw-r--r-- | sys/dev/ath/if_ath.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index 5343792685f2..034e302a1c66 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -149,9 +149,11 @@ SYSCTL_INT(_hw_ath, OID_AUTO, calibrate, CTLFLAG_RW, &ath_calinterval, static int ath_outdoor = AH_TRUE; /* outdoor operation */ SYSCTL_INT(_hw_ath, OID_AUTO, outdoor, CTLFLAG_RD, &ath_outdoor, 0, "enable/disable outdoor operation"); +TUNABLE_INT("hw.ath.outdoor", &ath_outdoor); static int ath_countrycode = CTRY_DEFAULT; /* country code */ SYSCTL_INT(_hw_ath, OID_AUTO, countrycode, CTLFLAG_RD, &ath_countrycode, 0, "country code"); +TUNABLE_INT("hw.ath.countrycode", &ath_countrycode); static int ath_regdomain = 0; /* regulatory domain */ SYSCTL_INT(_hw_ath, OID_AUTO, regdomain, CTLFLAG_RD, &ath_regdomain, 0, "regulatory domain"); |
