Deleted Added
full compact
if_an_pccard.c (139749) if_an_pccard.c (147580)
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

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

33 * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
34 *
35 * Written by Bill Paul <wpaul@ctr.columbia.edu>
36 * Electrical Engineering Department
37 * Columbia University, New York City
38 */
39
40#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

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

33 * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
34 *
35 * Written by Bill Paul <wpaul@ctr.columbia.edu>
36 * Electrical Engineering Department
37 * Columbia University, New York City
38 */
39
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/sys/dev/an/if_an_pccard.c 139749 2005-01-06 01:43:34Z imp $");
41__FBSDID("$FreeBSD: head/sys/dev/an/if_an_pccard.c 147580 2005-06-24 14:36:54Z imp $");
42
43#include "opt_inet.h"
44
45#ifdef INET
46#define ANCACHE
47#endif
48
49#include <sys/param.h>

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

103};
104
105static devclass_t an_pccard_devclass;
106
107DRIVER_MODULE(an, pccard, an_pccard_driver, an_pccard_devclass, 0, 0);
108MODULE_DEPEND(an, wlan, 1, 1, 1);
109
110static const struct pccard_product an_pccard_products[] = {
42
43#include "opt_inet.h"
44
45#ifdef INET
46#define ANCACHE
47#endif
48
49#include <sys/param.h>

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

103};
104
105static devclass_t an_pccard_devclass;
106
107DRIVER_MODULE(an, pccard, an_pccard_driver, an_pccard_devclass, 0, 0);
108MODULE_DEPEND(an, wlan, 1, 1, 1);
109
110static const struct pccard_product an_pccard_products[] = {
111 PCMCIA_CARD(AIRONET, PC4800, 0),
112 PCMCIA_CARD(AIRONET, PC4500, 0),
113 PCMCIA_CARD(AIRONET, 350, 0),
114 PCMCIA_CARD(XIRCOM, CWE1130, 0),
111 PCMCIA_CARD(AIRONET, PC4800),
112 PCMCIA_CARD(AIRONET, PC4500),
113 PCMCIA_CARD(AIRONET, 350),
114 PCMCIA_CARD(XIRCOM, CWE1130),
115 { NULL }
116};
117
118static int
119an_pccard_match(device_t dev)
120{
121 const struct pccard_product *pp;
122

--- 58 unchanged lines hidden ---
115 { NULL }
116};
117
118static int
119an_pccard_match(device_t dev)
120{
121 const struct pccard_product *pp;
122

--- 58 unchanged lines hidden ---