Deleted Added
full compact
if_ed_isa.c (119418) if_ed_isa.c (121118)
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 119418 2003-08-24 17:55:58Z obrien $");
30__FBSDID("$FreeBSD: head/sys/dev/ed/if_ed_isa.c 121118 2003-10-15 17:22:15Z shiba $");
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/socket.h>
35#include <sys/kernel.h>
36
37#include <sys/module.h>
38#include <sys/bus.h>

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

92 goto end;
93 ed_release_resources(dev);
94
95 error = ed_probe_3Com(dev, 0, flags);
96 if (error == 0)
97 goto end;
98 ed_release_resources(dev);
99
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/socket.h>
35#include <sys/kernel.h>
36
37#include <sys/module.h>
38#include <sys/bus.h>

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

92 goto end;
93 ed_release_resources(dev);
94
95 error = ed_probe_3Com(dev, 0, flags);
96 if (error == 0)
97 goto end;
98 ed_release_resources(dev);
99
100 error = ed_probe_SIC(dev, 0, flags);
101 if (error == 0)
102 goto end;
103 ed_release_resources(dev);
104
100 error = ed_probe_Novell(dev, 0, flags);
101 if (error == 0)
102 goto end;
103 ed_release_resources(dev);
104
105 error = ed_probe_HP_pclanp(dev, 0, flags);
106 if (error == 0)
107 goto end;

--- 52 unchanged lines hidden ---
105 error = ed_probe_Novell(dev, 0, flags);
106 if (error == 0)
107 goto end;
108 ed_release_resources(dev);
109
110 error = ed_probe_HP_pclanp(dev, 0, flags);
111 if (error == 0)
112 goto end;

--- 52 unchanged lines hidden ---