Fix oversight in previous.

This commit is contained in:
mycroft 1995-01-04 00:47:53 +00:00
parent 45a2b7262c
commit 6125e1b551
9 changed files with 15 additions and 24 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ast.c,v 1.15 1995/01/03 22:38:54 mycroft Exp $ */
/* $NetBSD: ast.c,v 1.16 1995/01/04 00:47:53 mycroft Exp $ */
/*
* Copyright (c) 1995 Charles Hannum. All rights reserved.
@ -82,10 +82,9 @@ astsubmatch(parent, match, aux)
void *match, *aux;
{
struct ast_softc *sc = (void *)parent;
struct device *self = match;
struct cfdata *cf = match;
struct isa_attach_args *ia = aux;
struct ast_attach_args *aa = ia->ia_aux;
struct cfdata *cf = self->dv_cfdata;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != aa->aa_slave)
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: boca.c,v 1.2 1995/01/03 22:38:55 mycroft Exp $ */
/* $NetBSD: boca.c,v 1.3 1995/01/04 00:47:54 mycroft Exp $ */
/*
* Copyright (c) 1995 Charles Hannum. All rights reserved.
@ -82,10 +82,9 @@ bocasubmatch(parent, match, aux)
void *match, *aux;
{
struct boca_softc *sc = (void *)parent;
struct device *self = match;
struct cfdata *cf = match;
struct isa_attach_args *ia = aux;
struct boca_attach_args *ba = ia->ia_aux;
struct cfdata *cf = self->dv_cfdata;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != ba->ba_slave)
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: com.c,v 1.43 1995/01/03 01:30:28 mycroft Exp $ */
/* $NetBSD: com.c,v 1.44 1995/01/04 00:47:56 mycroft Exp $ */
/*-
* Copyright (c) 1993, 1994 Charles Hannum.
@ -164,7 +164,6 @@ comprobe(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct com_softc *sc = match;
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtfps.c,v 1.10 1995/01/03 22:38:56 mycroft Exp $ */
/* $NetBSD: rtfps.c,v 1.11 1995/01/04 00:47:58 mycroft Exp $ */
/*
* Copyright (c) 1995 Charles Hannum. All rights reserved.
@ -83,10 +83,9 @@ rtfpssubmatch(parent, match, aux)
void *match, *aux;
{
struct rtfps_softc *sc = (void *)parent;
struct device *self = match;
struct cfdata *cf = match;
struct isa_attach_args *ia = aux;
struct rtfps_attach_args *ra = ia->ia_aux;
struct cfdata *cf = self->dv_cfdata;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != ra->ra_slave)
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: com.c,v 1.43 1995/01/03 01:30:28 mycroft Exp $ */
/* $NetBSD: com.c,v 1.44 1995/01/04 00:47:56 mycroft Exp $ */
/*-
* Copyright (c) 1993, 1994 Charles Hannum.
@ -164,7 +164,6 @@ comprobe(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct com_softc *sc = match;
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ast.c,v 1.15 1995/01/03 22:38:54 mycroft Exp $ */
/* $NetBSD: ast.c,v 1.16 1995/01/04 00:47:53 mycroft Exp $ */
/*
* Copyright (c) 1995 Charles Hannum. All rights reserved.
@ -82,10 +82,9 @@ astsubmatch(parent, match, aux)
void *match, *aux;
{
struct ast_softc *sc = (void *)parent;
struct device *self = match;
struct cfdata *cf = match;
struct isa_attach_args *ia = aux;
struct ast_attach_args *aa = ia->ia_aux;
struct cfdata *cf = self->dv_cfdata;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != aa->aa_slave)
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: boca.c,v 1.2 1995/01/03 22:38:55 mycroft Exp $ */
/* $NetBSD: boca.c,v 1.3 1995/01/04 00:47:54 mycroft Exp $ */
/*
* Copyright (c) 1995 Charles Hannum. All rights reserved.
@ -82,10 +82,9 @@ bocasubmatch(parent, match, aux)
void *match, *aux;
{
struct boca_softc *sc = (void *)parent;
struct device *self = match;
struct cfdata *cf = match;
struct isa_attach_args *ia = aux;
struct boca_attach_args *ba = ia->ia_aux;
struct cfdata *cf = self->dv_cfdata;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != ba->ba_slave)
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: com.c,v 1.43 1995/01/03 01:30:28 mycroft Exp $ */
/* $NetBSD: com.c,v 1.44 1995/01/04 00:47:56 mycroft Exp $ */
/*-
* Copyright (c) 1993, 1994 Charles Hannum.
@ -164,7 +164,6 @@ comprobe(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct com_softc *sc = match;
struct isa_attach_args *ia = aux;
int iobase = ia->ia_iobase;

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtfps.c,v 1.10 1995/01/03 22:38:56 mycroft Exp $ */
/* $NetBSD: rtfps.c,v 1.11 1995/01/04 00:47:58 mycroft Exp $ */
/*
* Copyright (c) 1995 Charles Hannum. All rights reserved.
@ -83,10 +83,9 @@ rtfpssubmatch(parent, match, aux)
void *match, *aux;
{
struct rtfps_softc *sc = (void *)parent;
struct device *self = match;
struct cfdata *cf = match;
struct isa_attach_args *ia = aux;
struct rtfps_attach_args *ra = ia->ia_aux;
struct cfdata *cf = self->dv_cfdata;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != ra->ra_slave)
return (0);