Deleted Added
full compact
if_wl.c (121816) if_wl.c (122625)
1/*
1/*
2
3#include <sys/cdefs.h>
4__FBSDID("$FreeBSD: head/sys/dev/wl/if_wl.c 121816 2003-10-31 18:32:15Z brooks $");
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain all copyright
9 * notices, this list of conditions and the following disclaimer.
10 * 2. The names of the authors may not be used to endorse or promote products
11 * derived from this software without specific prior written permission
12 *

--- 113 unchanged lines hidden (view full) ---

126#define MULTICAST 1
127
128/*
129 * Olivetti PC586 Mach Ethernet driver v1.0
130 * Copyright Ing. C. Olivetti & C. S.p.A. 1988, 1989
131 * All rights reserved.
132 *
133 */
2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that the following conditions
4 * are met:
5 * 1. Redistributions of source code must retain all copyright
6 * notices, this list of conditions and the following disclaimer.
7 * 2. The names of the authors may not be used to endorse or promote products
8 * derived from this software without specific prior written permission
9 *

--- 113 unchanged lines hidden (view full) ---

123#define MULTICAST 1
124
125/*
126 * Olivetti PC586 Mach Ethernet driver v1.0
127 * Copyright Ing. C. Olivetti & C. S.p.A. 1988, 1989
128 * All rights reserved.
129 *
130 */
134
135/*
136 Copyright 1988, 1989 by Olivetti Advanced Technology Center, Inc.,
137Cupertino, California.
138
139 All Rights Reserved
140
141 Permission to use, copy, modify, and distribute this software and
142its documentation for any purpose and without fee is hereby

--- 6 unchanged lines hidden (view full) ---

149 OLIVETTI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
150INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
151IN NO EVENT SHALL OLIVETTI BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
152CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
153LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
154NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUR OF OR IN CONNECTION
155WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
156*/
131/*
132 Copyright 1988, 1989 by Olivetti Advanced Technology Center, Inc.,
133Cupertino, California.
134
135 All Rights Reserved
136
137 Permission to use, copy, modify, and distribute this software and
138its documentation for any purpose and without fee is hereby

--- 6 unchanged lines hidden (view full) ---

145 OLIVETTI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
146INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
147IN NO EVENT SHALL OLIVETTI BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
148CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
149LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
150NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUR OF OR IN CONNECTION
151WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
152*/
157
158/*
159 Copyright 1988, 1989 by Intel Corporation, Santa Clara, California.
160
161 All Rights Reserved
162
163Permission to use, copy, modify, and distribute this software and
164its documentation for any purpose and without fee is hereby
165granted, provided that the above copyright notice appears in all

--- 6 unchanged lines hidden (view full) ---

172INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
173IN NO EVENT SHALL INTEL BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
174CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
175LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
176NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
177WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
178*/
179
153/*
154 Copyright 1988, 1989 by Intel Corporation, Santa Clara, California.
155
156 All Rights Reserved
157
158Permission to use, copy, modify, and distribute this software and
159its documentation for any purpose and without fee is hereby
160granted, provided that the above copyright notice appears in all

--- 6 unchanged lines hidden (view full) ---

167INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
168IN NO EVENT SHALL INTEL BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
169CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
170LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
171NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
172WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
173*/
174
175#include <sys/cdefs.h>
176__FBSDID("$FreeBSD: head/sys/dev/wl/if_wl.c 122625 2003-11-13 20:55:53Z obrien $");
177
178
180/*
181 * NOTE:
182 * by rvb:
183 * 1. The best book on the 82586 is:
184 * LAN Components User's Manual by Intel
185 * The copy I found was dated 1984. This really tells you
186 * what the state machines are doing
187 * 2. In the current design, we only do one write at a time,

--- 2460 unchanged lines hidden ---
179/*
180 * NOTE:
181 * by rvb:
182 * 1. The best book on the 82586 is:
183 * LAN Components User's Manual by Intel
184 * The copy I found was dated 1984. This really tells you
185 * what the state machines are doing
186 * 2. In the current design, we only do one write at a time,

--- 2460 unchanged lines hidden ---