isa_detach_hook() needs two arguments, the first an isa_chipset_tag_t.
This commit is contained in:
parent
ab367b5fb7
commit
fdeb7750f8
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: isa_machdep.c,v 1.37 2009/08/18 17:02:00 dyoung Exp $ */
|
||||
/* $NetBSD: isa_machdep.c,v 1.38 2009/08/19 15:12:31 dyoung Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.37 2009/08/18 17:02:00 dyoung Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.38 2009/08/19 15:12:31 dyoung Exp $");
|
||||
|
||||
#include "opt_vr41xx.h"
|
||||
|
||||
|
@ -200,7 +200,7 @@ isa_attach_hook(struct device *parent, struct device *self,
|
|||
}
|
||||
|
||||
void
|
||||
isa_detach_hook(device_t self)
|
||||
isa_detach_hook(isa_chipset_tag_t ic, device_t self)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: plumisa_machdep.c,v 1.10 2009/08/18 17:02:00 dyoung Exp $ */
|
||||
/* $NetBSD: plumisa_machdep.c,v 1.11 2009/08/19 15:12:31 dyoung Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: plumisa_machdep.c,v 1.10 2009/08/18 17:02:00 dyoung Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: plumisa_machdep.c,v 1.11 2009/08/19 15:12:31 dyoung Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -140,7 +140,7 @@ isa_attach_hook(struct device *parent, struct device *self,
|
|||
}
|
||||
|
||||
void
|
||||
isa_detach_hook(device_t self)
|
||||
isa_detach_hook(isa_chipset_tag_t, device_t self)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: isa_machdep.c,v 1.13 2009/08/18 17:02:00 dyoung Exp $ */
|
||||
/* $NetBSD: isa_machdep.c,v 1.14 2009/08/19 15:11:53 dyoung Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.13 2009/08/18 17:02:00 dyoung Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.14 2009/08/19 15:11:53 dyoung Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -162,7 +162,7 @@ isa_attach_hook(struct device *parent, struct device *self, struct isabus_attach
|
|||
}
|
||||
|
||||
void
|
||||
isa_detach_hook(device_t self)
|
||||
isa_detach_hook(isa_chipset_tag_t ic, device_t self)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: isa_shark_machdep.c,v 1.13 2009/08/18 17:02:00 dyoung Exp $ */
|
||||
/* $NetBSD: isa_shark_machdep.c,v 1.14 2009/08/19 15:11:22 dyoung Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 1997
|
||||
|
@ -34,7 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_shark_machdep.c,v 1.13 2009/08/18 17:02:00 dyoung Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_shark_machdep.c,v 1.14 2009/08/19 15:11:22 dyoung Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -228,6 +228,6 @@ isa_attach_hook(struct device *parent, struct device *self, struct isabus_attach
|
|||
}
|
||||
|
||||
void
|
||||
isa_detach_hook(device_t self)
|
||||
isa_detach_hook(isa_chipset_tag_t ic, device_t self)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue