diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-26 19:46:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-26 19:46:29 +0000 |
commit | 18f674bdb01612760b6d9f4ff6e8c6d471247897 (patch) | |
tree | 05ef32f111d0f495ece15b8459ed9cbdabe9643c /sys/dev/usb/if_wi_usb.c | |
parent | dd1d2b6c71db5455be522885c8fc13607c33a03d (diff) |
avoid extra inclusions; ok jsg
Diffstat (limited to 'sys/dev/usb/if_wi_usb.c')
-rw-r--r-- | sys/dev/usb/if_wi_usb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/usb/if_wi_usb.c b/sys/dev/usb/if_wi_usb.c index 73cd2e384eb..dc5fbdbc746 100644 --- a/sys/dev/usb/if_wi_usb.c +++ b/sys/dev/usb/if_wi_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_usb.c,v 1.32 2006/10/24 18:20:46 moritz Exp $ */ +/* $OpenBSD: if_wi_usb.c,v 1.33 2006/11/26 19:46:28 deraadt Exp $ */ /* * Copyright (c) 2003 Dale Rahn. All rights reserved. @@ -61,9 +61,8 @@ #define ROUNDUP64(x) (((x)+63) & ~63) -#include <net80211/ieee80211.h> -#include <net80211/ieee80211_ioctl.h> #include <net80211/ieee80211_var.h> +#include <net80211/ieee80211_ioctl.h> #if NBPFILTER > 0 #include <net/bpf.h> |