Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Don't pick up the network-interface, ethernet, an...



details:   https://anonhg.NetBSD.org/src/rev/c8dba3cf9d03
branches:  trunk
changeset: 753160:c8dba3cf9d03
user:      dyoung <dyoung%NetBSD.org@localhost>
date:      Fri Mar 19 01:32:30 2010 +0000

description:
Don't pick up the network-interface, ethernet, and 802.11-related
definitions by chance (or by the bus-specific front-end #including them!).
#include them here, instead.

diffstat:

 sys/dev/ic/athvar.h |  8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r 7baa4b4b3669 -r c8dba3cf9d03 sys/dev/ic/athvar.h
--- a/sys/dev/ic/athvar.h       Fri Mar 19 01:31:11 2010 +0000
+++ b/sys/dev/ic/athvar.h       Fri Mar 19 01:32:30 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: athvar.h,v 1.32 2010/03/14 21:25:59 dyoung Exp $       */
+/*     $NetBSD: athvar.h,v 1.33 2010/03/19 01:32:30 dyoung Exp $       */
 
 /*-
  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
@@ -44,6 +44,12 @@
 #ifndef _DEV_ATH_ATHVAR_H
 #define _DEV_ATH_ATHVAR_H
 
+#include <net/if.h>
+#include <net/if_media.h>
+#include <net/if_ether.h>
+
+#include <net80211/ieee80211_netbsd.h>
+#include <net80211/ieee80211_var.h>
 #include <net80211/ieee80211_radiotap.h>
 
 #include <external/isc/atheros_hal/dist/ah.h>



Home | Main Index | Thread Index | Old Index