Deleted Added
full compact
if_wi_pccard.c (140463) if_wi_pccard.c (140516)
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
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 the above copyright

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

34 * Lucent WaveLAN/IEEE 802.11 PCMCIA driver for FreeBSD.
35 *
36 * Written by Bill Paul <wpaul@ctr.columbia.edu>
37 * Electrical Engineering Department
38 * Columbia University, New York City
39 */
40
41#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
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 the above copyright

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

34 * Lucent WaveLAN/IEEE 802.11 PCMCIA driver for FreeBSD.
35 *
36 * Written by Bill Paul <wpaul@ctr.columbia.edu>
37 * Electrical Engineering Department
38 * Columbia University, New York City
39 */
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sys/dev/wi/if_wi_pccard.c 140463 2005-01-19 01:26:44Z imp $");
42__FBSDID("$FreeBSD: head/sys/dev/wi/if_wi_pccard.c 140516 2005-01-20 17:46:05Z imp $");
43
44#include "opt_wi.h"
45
46#include <sys/param.h>
47#include <sys/kernel.h>
48#include <sys/socket.h>
49#include <sys/systm.h>
50#include <sys/module.h>

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

131 PCMCIA_CARD(ELSA, XI300_IEEE, 0),
132 PCMCIA_CARD(ELSA, XI325_IEEE, 0),
133 PCMCIA_CARD(ELSA, XI800_IEEE, 0),
134 PCMCIA_CARD(EMTAC, WLAN, 0),
135 PCMCIA_CARD(ERICSSON, WIRELESSLAN, 0),
136 PCMCIA_CARD(GEMTEK, WLAN, 0),
137 PCMCIA_CARD(HWN, AIRWAY80211, 0),
138 PCMCIA_CARD(INTEL, PRO_WLAN_2011, 0),
43
44#include "opt_wi.h"
45
46#include <sys/param.h>
47#include <sys/kernel.h>
48#include <sys/socket.h>
49#include <sys/systm.h>
50#include <sys/module.h>

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

131 PCMCIA_CARD(ELSA, XI300_IEEE, 0),
132 PCMCIA_CARD(ELSA, XI325_IEEE, 0),
133 PCMCIA_CARD(ELSA, XI800_IEEE, 0),
134 PCMCIA_CARD(EMTAC, WLAN, 0),
135 PCMCIA_CARD(ERICSSON, WIRELESSLAN, 0),
136 PCMCIA_CARD(GEMTEK, WLAN, 0),
137 PCMCIA_CARD(HWN, AIRWAY80211, 0),
138 PCMCIA_CARD(INTEL, PRO_WLAN_2011, 0),
139 PCMCIA_CARD(INTERSIL, MA401RA, 0),
140 PCMCIA_CARD(INTERSIL, DWL650, 0),
139 PCMCIA_CARD(INTERSIL, DWL650, 0),
140 PCMCIA_CARD(INTERSIL, MA401RA, 0),
141 PCMCIA_CARD(INTERSIL, PRISM3, 0),
141 PCMCIA_CARD(INTERSIL2, PRISM2, 0),
142 PCMCIA_CARD(IODATA2, WCF12, 0),
143 PCMCIA_CARD(IODATA2, WNB11PCM, 0),
144 PCMCIA_CARD(FUJITSU, WL110, 0),
145 PCMCIA_CARD(LUCENT, WAVELAN_IEEE, 0),
146 PCMCIA_CARD(MICROSOFT, MN_520, 0),
147 PCMCIA_CARD(NOKIA, C020_WLAN, 0),
148 PCMCIA_CARD(NOKIA, C110_WLAN, 0),

--- 103 unchanged lines hidden ---
142 PCMCIA_CARD(INTERSIL2, PRISM2, 0),
143 PCMCIA_CARD(IODATA2, WCF12, 0),
144 PCMCIA_CARD(IODATA2, WNB11PCM, 0),
145 PCMCIA_CARD(FUJITSU, WL110, 0),
146 PCMCIA_CARD(LUCENT, WAVELAN_IEEE, 0),
147 PCMCIA_CARD(MICROSOFT, MN_520, 0),
148 PCMCIA_CARD(NOKIA, C020_WLAN, 0),
149 PCMCIA_CARD(NOKIA, C110_WLAN, 0),

--- 103 unchanged lines hidden ---