Deleted Added
full compact
if_ex_pccard.c (147256) if_ex_pccard.c (147580)
1/*-
2 * Copyright (c) 2000 Mitsuru IWASAKI
3 * 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

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

21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2000 Mitsuru IWASAKI
3 * 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

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

21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/dev/ex/if_ex_pccard.c 147256 2005-06-10 16:49:24Z brooks $");
29__FBSDID("$FreeBSD: head/sys/dev/ex/if_ex_pccard.c 147580 2005-06-24 14:36:54Z imp $");
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/kernel.h>
34#include <sys/socket.h>
35
36#include <sys/module.h>
37#include <sys/bus.h>

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

48#include <dev/ex/if_exvar.h>
49
50#include <dev/pccard/pccardvar.h>
51#include <dev/pccard/pccard_cis.h>
52
53#include "pccarddevs.h"
54
55static const struct pccard_product ex_pccard_products[] = {
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/kernel.h>
34#include <sys/socket.h>
35
36#include <sys/module.h>
37#include <sys/bus.h>

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

48#include <dev/ex/if_exvar.h>
49
50#include <dev/pccard/pccardvar.h>
51#include <dev/pccard/pccard_cis.h>
52
53#include "pccarddevs.h"
54
55static const struct pccard_product ex_pccard_products[] = {
56 PCMCIA_CARD(OLICOM, OC2220, 0),
57 PCMCIA_CARD(INTEL, ETHEREXPPRO, 0),
56 PCMCIA_CARD(OLICOM, OC2220),
57 PCMCIA_CARD(INTEL, ETHEREXPPRO),
58 { NULL }
59};
60
61/* Bus Front End Functions */
62static int ex_pccard_match(device_t);
63static int ex_pccard_probe(device_t);
64static int ex_pccard_attach(device_t);
65

--- 187 unchanged lines hidden ---
58 { NULL }
59};
60
61/* Bus Front End Functions */
62static int ex_pccard_match(device_t);
63static int ex_pccard_probe(device_t);
64static int ex_pccard_attach(device_t);
65

--- 187 unchanged lines hidden ---