Deleted Added
full compact
if_sbni_isa.c (182912) if_sbni_isa.c (257324)
1/*-
2 * Copyright (c) 1997-2001 Granch, Ltd. All rights reserved.
3 * Author: Denis I.Timofeev <timofeev@granch.ru>
4 *
5 * Redistributon 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

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997-2001 Granch, Ltd. All rights reserved.
3 * Author: Denis I.Timofeev <timofeev@granch.ru>
4 *
5 * Redistributon 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

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/sbni/if_sbni_isa.c 180263 2008-07-04 20:53:41Z jhb $");
30__FBSDID("$FreeBSD: head/sys/dev/sbni/if_sbni_isa.c 257324 2013-10-29 11:17:49Z glebius $");
31
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/socket.h>
36
37#include <sys/bus.h>
38#include <sys/kernel.h>
39#include <sys/module.h>
40#include <machine/bus.h>
41#include <machine/resource.h>
42#include <sys/rman.h>
43
44#include <net/if.h>
31
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/socket.h>
36
37#include <sys/bus.h>
38#include <sys/kernel.h>
39#include <sys/module.h>
40#include <machine/bus.h>
41#include <machine/resource.h>
42#include <sys/rman.h>
43
44#include <net/if.h>
45#include <net/if_var.h>
45#include <net/ethernet.h>
46#include <net/ethernet.h>
46#include <net/if_arp.h>
47
48#include <isa/isavar.h>
49
50#include <dev/sbni/if_sbnireg.h>
51#include <dev/sbni/if_sbnivar.h>
52
53static int sbni_probe_isa(device_t);
54static int sbni_attach_isa(device_t);

--- 113 unchanged lines hidden ---
47
48#include <isa/isavar.h>
49
50#include <dev/sbni/if_sbnireg.h>
51#include <dev/sbni/if_sbnivar.h>
52
53static int sbni_probe_isa(device_t);
54static int sbni_attach_isa(device_t);

--- 113 unchanged lines hidden ---