summaryrefslogtreecommitdiff
path: root/sys/dev/ath
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2007-04-10 15:48:45 +0000
committerRobert Watson <rwatson@FreeBSD.org>2007-04-10 15:48:45 +0000
commitcc807dbd0a5f024bfdd350479358e0a7c7373b5a (patch)
tree1e2f5f7a39879bcf7de70264c63b0ab4bdb02cf6 /sys/dev/ath
parent9956b3f5e499427982e85327a5291e3ec2586e5a (diff)
Notes
Diffstat (limited to 'sys/dev/ath')
-rw-r--r--sys/dev/ath/ah_osdep.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/sys/dev/ath/ah_osdep.c b/sys/dev/ath/ah_osdep.c
index e580e2f29d9e..c5f31e3622e2 100644
--- a/sys/dev/ath/ah_osdep.c
+++ b/sys/dev/ath/ah_osdep.c
@@ -199,16 +199,13 @@ ath_hal_setlogging(int enable)
int error;
if (enable) {
- error = suser(curthread);
- if (error == 0) {
- error = alq_open(&ath_hal_alq, ath_hal_logfile,
- curthread->td_ucred, ALQ_DEFAULT_CMODE,
- sizeof (struct athregrec), ath_hal_alq_qsize);
- ath_hal_alq_lost = 0;
- ath_hal_alq_emitdev = 1;
- printf("ath_hal: logging to %s enabled\n",
- ath_hal_logfile);
- }
+ error = alq_open(&ath_hal_alq, ath_hal_logfile,
+ curthread->td_ucred, ALQ_DEFAULT_CMODE,
+ sizeof (struct athregrec), ath_hal_alq_qsize);
+ ath_hal_alq_lost = 0;
+ ath_hal_alq_emitdev = 1;
+ printf("ath_hal: logging to %s enabled\n",
+ ath_hal_logfile);
} else {
if (ath_hal_alq)
alq_close(ath_hal_alq);