Deleted Added
full compact
if_ed_isa.c (191299) if_ed_isa.c (211764)
1/*-
2 * Copyright (c) 1995, David Greenman
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

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE 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) 1995, David Greenman
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

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE 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/ed/if_ed_isa.c 191299 2009-04-20 01:19:59Z imp $");
30__FBSDID("$FreeBSD: head/sys/dev/ed/if_ed_isa.c 211764 2010-08-24 18:17:40Z yongari $");
31
32#include "opt_ed.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/socket.h>
37#include <sys/kernel.h>
38

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

53
54static int ed_isa_probe(device_t);
55static int ed_isa_attach(device_t);
56
57static struct isa_pnp_id ed_ids[] = {
58 { 0x0131d805, NULL }, /* ANX3101 */
59 { 0x4cf48906, NULL }, /* ATIf44c */
60 { 0x01200507, NULL }, /* AXE2001 */
31
32#include "opt_ed.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/socket.h>
37#include <sys/kernel.h>
38

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

53
54static int ed_isa_probe(device_t);
55static int ed_isa_attach(device_t);
56
57static struct isa_pnp_id ed_ids[] = {
58 { 0x0131d805, NULL }, /* ANX3101 */
59 { 0x4cf48906, NULL }, /* ATIf44c */
60 { 0x01200507, NULL }, /* AXE2001 */
61 { 0x0115180e, NULL }, /* CPX1501 */
61 { 0x0090252a, NULL }, /* JQE9000 */
62 { 0x0020832e, NULL }, /* KTC2000 */
63 { 0xd680d041, NULL }, /* PNP80d6 */
64 { 0x6081d041, NULL }, /* PNP8160 */
65 { 0x19808c4a, NULL }, /* RTL8019 */
66 { 0x1684a34d, NULL }, /* SMC8416 */
67 { 0x1980635e, NULL }, /* WSC8019 */
68 { 0, NULL }

--- 134 unchanged lines hidden ---
62 { 0x0090252a, NULL }, /* JQE9000 */
63 { 0x0020832e, NULL }, /* KTC2000 */
64 { 0xd680d041, NULL }, /* PNP80d6 */
65 { 0x6081d041, NULL }, /* PNP8160 */
66 { 0x19808c4a, NULL }, /* RTL8019 */
67 { 0x1684a34d, NULL }, /* SMC8416 */
68 { 0x1980635e, NULL }, /* WSC8019 */
69 { 0, NULL }

--- 134 unchanged lines hidden ---