Deleted Added
full compact
if_ed_pci.c (113506) if_ed_pci.c (119277)
1/*
2 *
3 * Copyright (c) 1996 Stefan Esser <se@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice immediately at the beginning of the file, without modification,
11 * this list of conditions, and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Absolutely no warranty of function or purpose is made by the author
16 * Stefan Esser.
17 * 4. Modifications may be freely made to this file if the above conditions
18 * are met.
19 *
1/*
2 *
3 * Copyright (c) 1996 Stefan Esser <se@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice immediately at the beginning of the file, without modification,
11 * this list of conditions, and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Absolutely no warranty of function or purpose is made by the author
16 * Stefan Esser.
17 * 4. Modifications may be freely made to this file if the above conditions
18 * are met.
19 *
20 * $FreeBSD: head/sys/dev/ed/if_ed_pci.c 113506 2003-04-15 06:37:30Z mdodd $
20 * $FreeBSD: head/sys/dev/ed/if_ed_pci.c 119277 2003-08-22 05:54:52Z imp $
21 */
22
23#include <sys/param.h>
24#include <sys/systm.h>
25#include <sys/socket.h>
26#include <sys/kernel.h>
27
28#include <sys/module.h>
29#include <sys/bus.h>
30
31#include <machine/bus.h>
32#include <sys/rman.h>
33#include <machine/resource.h>
34
35#include <net/if.h>
36#include <net/if_arp.h>
37#include <net/if_mib.h>
38
21 */
22
23#include <sys/param.h>
24#include <sys/systm.h>
25#include <sys/socket.h>
26#include <sys/kernel.h>
27
28#include <sys/module.h>
29#include <sys/bus.h>
30
31#include <machine/bus.h>
32#include <sys/rman.h>
33#include <machine/resource.h>
34
35#include <net/if.h>
36#include <net/if_arp.h>
37#include <net/if_mib.h>
38
39#include
40#include
39#include <dev/pci/pcireg.h>
40#include <dev/pci/pcivar.h>
41
42#include <dev/ed/if_edvar.h>
43
44static struct _pcsid
45{
46 u_int32_t type;
47 const char *desc;
48} pci_ids[] =

--- 77 unchanged lines hidden ---
41
42#include <dev/ed/if_edvar.h>
43
44static struct _pcsid
45{
46 u_int32_t type;
47 const char *desc;
48} pci_ids[] =

--- 77 unchanged lines hidden ---