Beispiel #1
0
static int
sn_isa_probe (device_t dev)
{
	if (isa_get_logicalid(dev))		/* skip PnP probes */
		return (ENXIO);
	if (sn_probe(dev) != 0)
		return (ENXIO);
	return (0);
}
Beispiel #2
0
static int
sn_isa_probe (device_t dev)
{
#if 0
	if (sn_probe(dev, 0) != 0)
		return (0);
#endif
	return (ENXIO);
}
Beispiel #3
0
/*
 * Initialize the device - called from Slot manager.
 */
static int
sn_pccard_probe(device_t dev)
{
	return (sn_probe(dev, 1));
}