fix arguments to ahbmatch to properly reflect reality. provide prototyped
declarations for ahbmatch and ahbattach.
This commit is contained in:
parent
8c485c3690
commit
b213396977
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: aha1742.c,v 1.55 1996/02/27 00:31:30 cgd Exp $ */
|
/* $NetBSD: aha1742.c,v 1.56 1996/02/28 20:29:48 cgd Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1994 Charles Hannum. All rights reserved.
|
* Copyright (c) 1994 Charles Hannum. All rights reserved.
|
||||||
@ -315,8 +315,8 @@ struct scsi_device ahb_dev = {
|
|||||||
NULL, /* Use default 'done' routine */
|
NULL, /* Use default 'done' routine */
|
||||||
};
|
};
|
||||||
|
|
||||||
int ahbmatch();
|
int ahbmatch __P((struct device *, void *, void *));
|
||||||
void ahbattach();
|
void ahbattach __P((struct device *, struct device *, void *));
|
||||||
|
|
||||||
struct cfdriver ahbcd = {
|
struct cfdriver ahbcd = {
|
||||||
NULL, "ahb", ahbmatch, ahbattach, DV_DULL, sizeof(struct ahb_softc)
|
NULL, "ahb", ahbmatch, ahbattach, DV_DULL, sizeof(struct ahb_softc)
|
||||||
@ -412,11 +412,10 @@ ahb_send_immed(ahb, target, cmd)
|
|||||||
* the actual probe routine to check it out.
|
* the actual probe routine to check it out.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
ahbmatch(parent, self, aux)
|
ahbmatch(parent, match, aux)
|
||||||
struct device *parent, *self;
|
struct device *parent;
|
||||||
void *aux;
|
void *match, *aux;
|
||||||
{
|
{
|
||||||
struct ahb_softc *ahb = (void *)self;
|
|
||||||
struct eisa_attach_args *ea = aux;
|
struct eisa_attach_args *ea = aux;
|
||||||
|
|
||||||
/* must match one of our known ID strings */
|
/* must match one of our known ID strings */
|
||||||
|
Loading…
Reference in New Issue
Block a user