Update callers of isapnp_devmatch().
This commit is contained in:
parent
cbd5623c72
commit
2cccf3bd4a
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: joy_isapnp.c,v 1.14 1998/07/23 19:32:42 christos Exp $ */
|
||||
/* $NetBSD: joy_isapnp.c,v 1.15 1999/03/22 09:44:12 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -63,7 +63,9 @@ joy_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_joy_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_joy_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: aha_isapnp.c,v 1.1 1998/11/23 20:47:51 christos Exp $ */
|
||||
/* $NetBSD: aha_isapnp.c,v 1.2 1999/03/22 09:44:13 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -70,7 +70,9 @@ aha_isapnp_probe(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_aha_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_aha_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: aic_isapnp.c,v 1.3 1998/07/23 19:30:44 christos Exp $ */
|
||||
/* $NetBSD: aic_isapnp.c,v 1.4 1999/03/22 09:44:13 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -74,7 +74,9 @@ aic_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_aic_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_aic_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: com_isapnp.c,v 1.14 1998/09/18 14:38:48 enami Exp $ */
|
||||
/* $NetBSD: com_isapnp.c,v 1.15 1999/03/22 09:44:13 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -76,7 +76,9 @@ com_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_com_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_com_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ess_isapnp.c,v 1.3 1999/03/19 01:21:24 mycroft Exp $ */
|
||||
/* $NetBSD: ess_isapnp.c,v 1.4 1999/03/22 09:44:13 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1993 Regents of the University of California.
|
||||
@ -79,7 +79,9 @@ ess_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_ess_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_ess_devinfo, &variant));
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: gus_isapnp.c,v 1.11 1999/02/17 21:44:55 mycroft Exp $ */
|
||||
/* $NetBSD: gus_isapnp.c,v 1.12 1999/03/22 09:44:13 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
|
||||
@ -134,7 +134,9 @@ gus_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
if (!isapnp_devmatch(aux, &isapnp_gus_devinfo))
|
||||
int variant;
|
||||
|
||||
if (!isapnp_devmatch(aux, &isapnp_gus_devinfo, &variant))
|
||||
return 0;
|
||||
|
||||
gus_0 = 1;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: i82365_isapnp.c,v 1.4 1998/07/23 19:30:45 christos Exp $ */
|
||||
/* $NetBSD: i82365_isapnp.c,v 1.5 1999/03/22 09:44:13 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 Bill Sommerfeld. All rights reserved.
|
||||
@ -97,7 +97,9 @@ pcic_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_pcic_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_pcic_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ep_isapnp.c,v 1.17 1998/11/04 00:30:36 fvdl Exp $ */
|
||||
/* $NetBSD: if_ep_isapnp.c,v 1.18 1999/03/22 09:44:14 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Jonathan Stone <jonathan@NetBSD.org>
|
||||
@ -94,7 +94,9 @@ ep_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_ep_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_ep_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_le_isapnp.c,v 1.15 1998/07/23 19:30:45 christos Exp $ */
|
||||
/* $NetBSD: if_le_isapnp.c,v 1.16 1999/03/22 09:44:14 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -168,7 +168,9 @@ le_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(ipa, &isapnp_le_dev);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_le_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ne_isapnp.c,v 1.9 1998/10/31 01:44:16 thorpej Exp $ */
|
||||
/* $NetBSD: if_ne_isapnp.c,v 1.10 1999/03/22 09:44:14 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
@ -112,7 +112,9 @@ ne_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_ne_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_ne_devinfo, &variant));
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -44,7 +44,9 @@ mpu_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return (isapnp_devmatch(aux, &isapnp_mpu_devinfo));
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_mpu_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sb_isapnp.c,v 1.31 1999/03/22 07:41:36 mycroft Exp $ */
|
||||
/* $NetBSD: sb_isapnp.c,v 1.32 1999/03/22 09:44:14 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1993 Regents of the University of California.
|
||||
@ -83,7 +83,9 @@ sb_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return (isapnp_devmatch(aux, &isapnp_sb_devinfo));
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_sb_devinfo, &variant));
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: wdc_isapnp.c,v 1.11 1999/02/22 03:24:34 mycroft Exp $ */
|
||||
/* $NetBSD: wdc_isapnp.c,v 1.12 1999/03/22 09:44:14 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -84,7 +84,9 @@ wdc_isapnp_probe(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_wdc_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_wdc_devinfo, &variant));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ym_isapnp.c,v 1.6 1999/02/23 21:16:27 nathanw Exp $ */
|
||||
/* $NetBSD: ym_isapnp.c,v 1.7 1999/03/22 09:44:15 mycroft Exp $ */
|
||||
|
||||
|
||||
/*
|
||||
@ -87,7 +87,9 @@ ym_isapnp_match(parent, match, aux)
|
||||
struct cfdata *match;
|
||||
void *aux;
|
||||
{
|
||||
return isapnp_devmatch(aux, &isapnp_ym_devinfo);
|
||||
int variant;
|
||||
|
||||
return (isapnp_devmatch(aux, &isapnp_ym_devinfo, &variant));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user