Restore the original copyright notice by Bill Sommerfeld
<sommerfeld@netbsd.org> since it is based on the original code.
This commit is contained in:
parent
5b8623bec6
commit
73a779fa1f
|
@ -1,11 +1,11 @@
|
||||||
/* $NetBSD: awi.c,v 1.18 2000/06/09 05:31:15 onoe Exp $ */
|
/* $NetBSD: awi.c,v 1.19 2000/06/09 14:36:25 onoe Exp $ */
|
||||||
|
|
||||||
/*
|
/*-
|
||||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This code is derived from software contributed to The NetBSD Foundation
|
* This code is derived from software contributed to The NetBSD Foundation
|
||||||
* by Atsushi Onoe.
|
* by Bill Sommerfeld
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. All advertising materials mentioning features or use of this software
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
* must display the following acknowledgement:
|
* must display the following acknowledgement:
|
||||||
* This product includes software developed by the NetBSD
|
* This product includes software developed by the NetBSD
|
||||||
* Foundation, Inc. and its contributors.
|
* Foundation, Inc. and its contributors.
|
||||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||||
* contributors may be used to endorse or promote products derived
|
* contributors may be used to endorse or promote products derived
|
||||||
* from this software without specific prior written permission.
|
* from this software without specific prior written permission.
|
||||||
|
@ -35,13 +35,49 @@
|
||||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
/*
|
||||||
|
* Driver for AMD 802.11 firmware.
|
||||||
|
* Uses am79c930 chip driver to talk to firmware running on the am79c930.
|
||||||
|
*
|
||||||
|
* More-or-less a generic ethernet-like if driver, with 802.11 gorp added.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* todo:
|
||||||
|
* - flush tx queue on resynch.
|
||||||
|
* - clear oactive on "down".
|
||||||
|
* - rewrite copy-into-mbuf code
|
||||||
|
* - mgmt state machine gets stuck retransmitting assoc requests.
|
||||||
|
* - multicast filter.
|
||||||
|
* - fix device reset so it's more likely to work
|
||||||
|
* - show status goo through ifmedia.
|
||||||
|
*
|
||||||
|
* more todo:
|
||||||
|
* - deal with more 802.11 frames.
|
||||||
|
* - send reassoc request
|
||||||
|
* - deal with reassoc response
|
||||||
|
* - send/deal with disassociation
|
||||||
|
* - deal with "full" access points (no room for me).
|
||||||
|
* - power save mode
|
||||||
|
*
|
||||||
|
* later:
|
||||||
|
* - SSID preferences
|
||||||
|
* - need ioctls for poking at the MIBs
|
||||||
|
* - implement ad-hoc mode (including bss creation).
|
||||||
|
* - decide when to do "ad hoc" vs. infrastructure mode (IFF_LINK flags?)
|
||||||
|
* (focus on inf. mode since that will be needed for ietf)
|
||||||
|
* - deal with DH vs. FH versions of the card
|
||||||
|
* - deal with faster cards (2mb/s)
|
||||||
|
* - ?WEP goo (mmm, rc4) (it looks not particularly useful).
|
||||||
|
* - ifmedia revision.
|
||||||
|
* - common 802.11 mibish things.
|
||||||
|
* - common 802.11 media layer.
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Driver for AMD 802.11 PCnetMobile firmware.
|
* Driver for AMD 802.11 PCnetMobile firmware.
|
||||||
* Uses am79c930 chip driver to talk to firmware running on the am79c930.
|
* Uses am79c930 chip driver to talk to firmware running on the am79c930.
|
||||||
*
|
*
|
||||||
* The awi device driver first appeared in NetBSD 1.5.
|
|
||||||
*
|
|
||||||
* The initial version of the driver was written by
|
* The initial version of the driver was written by
|
||||||
* Bill Sommerfeld <sommerfeld@netbsd.org>.
|
* Bill Sommerfeld <sommerfeld@netbsd.org>.
|
||||||
* Then the driver module completely rewritten to support cards with DS phy
|
* Then the driver module completely rewritten to support cards with DS phy
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
/* $NetBSD: awivar.h,v 1.9 2000/06/09 05:31:18 onoe Exp $ */
|
/* $NetBSD: awivar.h,v 1.10 2000/06/09 14:36:26 onoe Exp $ */
|
||||||
|
|
||||||
/*
|
/*-
|
||||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This code is derived from software contributed to The NetBSD Foundation
|
* This code is derived from software contributed to The NetBSD Foundation
|
||||||
* by Atsushi Onoe
|
* by Bill Sommerfeld
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
|
Loading…
Reference in New Issue