Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch isa_detach_hook() needs two arguments, the first an...
details: https://anonhg.NetBSD.org/src/rev/047f61c15d2d
branches: trunk
changeset: 746767:047f61c15d2d
user: dyoung <dyoung%NetBSD.org@localhost>
date: Wed Aug 19 15:11:22 2009 +0000
description:
isa_detach_hook() needs two arguments, the first an isa_chipset_tag_t.
diffstat:
sys/arch/hpcmips/isa/isa_machdep.c | 6 +++---
sys/arch/hpcmips/isa/plumisa_machdep.c | 6 +++---
sys/arch/mipsco/isa/isa_machdep.c | 6 +++---
sys/arch/shark/isa/isa_shark_machdep.c | 6 +++---
4 files changed, 12 insertions(+), 12 deletions(-)
diffs (107 lines):
diff -r 997a2bea40e4 -r 047f61c15d2d sys/arch/hpcmips/isa/isa_machdep.c
--- a/sys/arch/hpcmips/isa/isa_machdep.c Wed Aug 19 15:09:56 2009 +0000
+++ b/sys/arch/hpcmips/isa/isa_machdep.c Wed Aug 19 15:11:22 2009 +0000
@@ -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 @@
}
void
-isa_detach_hook(device_t self)
+isa_detach_hook(isa_chipset_tag_t ic, device_t self)
{
}
diff -r 997a2bea40e4 -r 047f61c15d2d sys/arch/hpcmips/isa/plumisa_machdep.c
--- a/sys/arch/hpcmips/isa/plumisa_machdep.c Wed Aug 19 15:09:56 2009 +0000
+++ b/sys/arch/hpcmips/isa/plumisa_machdep.c Wed Aug 19 15:11:22 2009 +0000
@@ -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 @@
}
void
-isa_detach_hook(device_t self)
+isa_detach_hook(isa_chipset_tag_t, device_t self)
{
}
diff -r 997a2bea40e4 -r 047f61c15d2d sys/arch/mipsco/isa/isa_machdep.c
--- a/sys/arch/mipsco/isa/isa_machdep.c Wed Aug 19 15:09:56 2009 +0000
+++ b/sys/arch/mipsco/isa/isa_machdep.c Wed Aug 19 15:11:22 2009 +0000
@@ -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 @@
}
void
-isa_detach_hook(device_t self)
+isa_detach_hook(isa_chipset_tag_t ic, device_t self)
{
}
diff -r 997a2bea40e4 -r 047f61c15d2d sys/arch/shark/isa/isa_shark_machdep.c
--- a/sys/arch/shark/isa/isa_shark_machdep.c Wed Aug 19 15:09:56 2009 +0000
+++ b/sys/arch/shark/isa/isa_shark_machdep.c Wed Aug 19 15:11:22 2009 +0000
@@ -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 @@
}
void
-isa_detach_hook(device_t self)
+isa_detach_hook(isa_chipset_tag_t ic, device_t self)
{
}
Home |
Main Index |
Thread Index |
Old Index