Deleted Added
full compact
if_ex_pccard.c (129740) if_ex_pccard.c (129764)
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 129740 2004-05-26 00:53:10Z imp $");
29__FBSDID("$FreeBSD: head/sys/dev/ex/if_ex_pccard.c 129764 2004-05-27 03:49:45Z 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>
38
39#include <machine/bus.h>
40#include <machine/resource.h>
41#include <sys/rman.h>
42
43#include <net/if.h>
44#include <net/if_arp.h>
45#include <net/if_media.h>
46
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>
38
39#include <machine/bus.h>
40#include <machine/resource.h>
41#include <sys/rman.h>
42
43#include <net/if.h>
44#include <net/if_arp.h>
45#include <net/if_media.h>
46
47
48#include <dev/ex/if_exreg.h>
49#include <dev/ex/if_exvar.h>
50
51#include <dev/pccard/pccardvar.h>
47#include <dev/ex/if_exreg.h>
48#include <dev/ex/if_exvar.h>
49
50#include <dev/pccard/pccardvar.h>
51
52#include "pccarddevs.h"
53
54static const struct pccard_product ex_pccard_products[] = {
55 PCMCIA_CARD(OLICOM, OC2220, 0),
56 { NULL }
57};
58
59/* Bus Front End Functions */

--- 115 unchanged lines hidden ---
52#include "pccarddevs.h"
53
54static const struct pccard_product ex_pccard_products[] = {
55 PCMCIA_CARD(OLICOM, OC2220, 0),
56 { NULL }
57};
58
59/* Bus Front End Functions */

--- 115 unchanged lines hidden ---