diff options
author | 2009-07-24 16:31:27 +0000 | |
---|---|---|
committer | 2009-07-24 16:31:27 +0000 | |
commit | 63bf3955f1d136e7b0e8d1a58614c1c208bdae2f (patch) | |
tree | 229aa3f4f756750cfcdb712735313bd0c08b1f75 | |
parent | sync (diff) | |
download | wireguard-openbsd-63bf3955f1d136e7b0e8d1a58614c1c208bdae2f.tar.xz wireguard-openbsd-63bf3955f1d136e7b0e8d1a58614c1c208bdae2f.zip |
Don't include systm.h as it isn't needed and pulls in libkern headers,
and as ar5xxx.h is included from athvar.h this made referencing the
SIOCGATHSTATS ioctl from userland impossible.
ok reyk@
-rw-r--r-- | sys/dev/ic/ar5xxx.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/ar5xxx.h b/sys/dev/ic/ar5xxx.h index 96d37069d09..7da71e7e2df 100644 --- a/sys/dev/ic/ar5xxx.h +++ b/sys/dev/ic/ar5xxx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5xxx.h,v 1.46 2009/06/02 12:39:02 reyk Exp $ */ +/* $OpenBSD: ar5xxx.h,v 1.47 2009/07/24 16:31:27 jsg Exp $ */ /* * Copyright (c) 2004, 2005, 2006, 2007 Reyk Floeter <reyk@openbsd.org> @@ -33,7 +33,6 @@ #define _AR5K_H #include <sys/param.h> -#include <sys/systm.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/lock.h> |