Deleted Added
full compact
if_ed_pci.c (31347) if_ed_pci.c (33893)
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 * $Id: if_ed_p.c,v 1.10 1997/08/14 07:53:07 danny Exp $
20 * $Id: if_ed_p.c,v 1.11 1997/11/22 06:19:59 msmith Exp $
21 */
22
23#include "pci.h"
24#if NPCI > 0
25
26#include <sys/param.h>
27#include <sys/systm.h>
28#include <sys/malloc.h>

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

39} pci_ids[] =
40{
41 { 0x802910ec, "NE2000 PCI Ethernet (RealTek 8029)" },
42 { 0x50004a14, "NE2000 PCI Ethernet (NetVin 5000)" },
43 { 0x09401050, "NE2000 PCI Ethernet (ProLAN)" },
44 { 0x140111f6, "NE2000 PCI Ethernet (Compex)" },
45 { 0x30008e2e, "NE2000 PCI Ethernet (KTI)" },
46 { 0x19808c4a, "NE2000 PCI Ethernet (Winbond W89C940)" },
21 */
22
23#include "pci.h"
24#if NPCI > 0
25
26#include <sys/param.h>
27#include <sys/systm.h>
28#include <sys/malloc.h>

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

39} pci_ids[] =
40{
41 { 0x802910ec, "NE2000 PCI Ethernet (RealTek 8029)" },
42 { 0x50004a14, "NE2000 PCI Ethernet (NetVin 5000)" },
43 { 0x09401050, "NE2000 PCI Ethernet (ProLAN)" },
44 { 0x140111f6, "NE2000 PCI Ethernet (Compex)" },
45 { 0x30008e2e, "NE2000 PCI Ethernet (KTI)" },
46 { 0x19808c4a, "NE2000 PCI Ethernet (Winbond W89C940)" },
47 { 0x0e3410bd, "NE2000 PCI Ethernet (Surecom NE-34)" },
47 { 0x00000000, NULL }
48};
49
50extern void *ed_attach_NE2000_pci __P((int, int));
51
52static char* ed_pci_probe __P((pcici_t tag, pcidi_t type));
53static void ed_pci_attach __P((pcici_t config_id, int unit));
54

--- 48 unchanged lines hidden ---
48 { 0x00000000, NULL }
49};
50
51extern void *ed_attach_NE2000_pci __P((int, int));
52
53static char* ed_pci_probe __P((pcici_t tag, pcidi_t type));
54static void ed_pci_attach __P((pcici_t config_id, int unit));
55

--- 48 unchanged lines hidden ---