Lines Matching +full:num +full:- +full:addresses
1 // SPDX-License-Identifier: GPL-2.0-or-later
17 * - get rid of pre-linked dev list, dynamic device allocation
19 * - struct init cleanup, enable multiple ISA autoprobes.
20 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 09/1999
21 * - fix sbni: s/device/net_device/
23 * - sort probes in a sane way, make sure all (safe) probes
39 int status; /* non-zero if autoprobe has failed */
46 for (; p->probe; p++) { in probe_list2()
47 if (autoprobe && p->status) in probe_list2()
49 dev = p->probe(unit); in probe_list2()
53 p->status = PTR_ERR(dev); in probe_list2()
55 return -ENODEV; in probe_list2()
58 /* ISA probes that touch addresses < 0x400 (including those that also
74 #if defined(CONFIG_NE2000) /* ISA (use ne2k-pci for PCI cards) */
98 #ifdef CONFIG_ATARILANCE /* Lance-based Atari ethernet boards */
131 /* Statically configured drivers -- order matters here. */
134 int num; in net_olddevs_init() local
137 for (num = 0; num < 8; ++num) in net_olddevs_init()
138 sbni_probe(num); in net_olddevs_init()
140 for (num = 0; num < 8; ++num) in net_olddevs_init()
141 ethif_probe2(num); in net_olddevs_init()