Changeset 60
- Timestamp:
- 03/15/03 19:32:56 (5 years ago)
- Files:
-
- cvs-import/trunk/wlan/Makefile (modified) (1 diff)
- cvs-import/trunk/wlan/if_ieee80211.h (modified) (2 diffs)
- cvs-import/trunk/wlan/if_ieee80211subr.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cvs-import/trunk/wlan/Makefile
r34 r60 7 7 include ${DEPTH}/Makefile.inc 8 8 9 SRCS_80211= if_ieee80211subr.c if_ieee80211 ioctl.c if_ieee80211wireless.c10 OBJS_80211= if_ieee80211subr.o if_ieee80211 ioctl.o if_ieee80211wireless.o9 SRCS_80211= if_ieee80211subr.c if_ieee80211wireless.c 10 OBJS_80211= if_ieee80211subr.o if_ieee80211wireless.o 11 11 SRCS= ${SRCS_80211} if_media.c rc4.c 12 12 OBJS= ${OBJS_80211} if_media.o rc4.o cvs-import/trunk/wlan/if_ieee80211.h
r49 r60 587 587 int ic_mgt_timer; /* mgmt timeout */ 588 588 int ic_inact_timer; /* inactivity timer wait */ 589 int ic_nicknamelen; 590 u_int8_t ic_nickname[IEEE80211_NWID_LEN]; 589 591 int ic_des_esslen; 590 592 u_int8_t ic_des_essid[IEEE80211_NWID_LEN]; … … 683 685 struct ieee80211channel *ieee80211_chan_find(struct ieee80211com *, u_int); 684 686 685 extern int ieee80211_ioctl(struct net_device *, struct ifreq *, int);686 687 687 extern const char *ether_sprintf(const u_int8_t *); /* XXX */ 688 688 cvs-import/trunk/wlan/if_ieee80211subr.c
r57 r60 148 148 if (dev->get_stats == NULL) 149 149 dev->get_stats = ieee80211_getstats; 150 if (dev->do_ioctl == NULL)151 dev->do_ioctl = ieee80211_ioctl;152 150 #ifdef CONFIG_NET_WIRELESS 153 151 if (dev->get_wireless_stats == NULL)
