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/f1ad3e0da1e0
branches: trunk
changeset: 746770:f1ad3e0da1e0
user: dyoung <dyoung%NetBSD.org@localhost>
date: Wed Aug 19 15:14:59 2009 +0000
description:
isa_detach_hook() needs two arguments, the first an isa_chipset_tag_t.
diffstat:
sys/arch/atari/isa/isa_machdep.c | 6 +++---
sys/arch/evbarm/tsarm/isa/isa_machdep.c | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (53 lines):
diff -r 27cc04afc85c -r f1ad3e0da1e0 sys/arch/atari/isa/isa_machdep.c
--- a/sys/arch/atari/isa/isa_machdep.c Wed Aug 19 15:13:56 2009 +0000
+++ b/sys/arch/atari/isa/isa_machdep.c Wed Aug 19 15:14:59 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.c,v 1.34 2009/08/18 17:02:00 dyoung Exp $ */
+/* $NetBSD: isa_machdep.c,v 1.35 2009/08/19 15:15:21 dyoung Exp $ */
/*
* Copyright (c) 1997 Leo Weppelman. All rights reserved.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.34 2009/08/18 17:02:00 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.35 2009/08/19 15:15:21 dyoung Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -155,7 +155,7 @@
}
void
-isa_detach_hook(device_t self)
+isa_detach_hook(isa_chipset_tag_t, device_t self)
{
}
diff -r 27cc04afc85c -r f1ad3e0da1e0 sys/arch/evbarm/tsarm/isa/isa_machdep.c
--- a/sys/arch/evbarm/tsarm/isa/isa_machdep.c Wed Aug 19 15:13:56 2009 +0000
+++ b/sys/arch/evbarm/tsarm/isa/isa_machdep.c Wed Aug 19 15:14:59 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.c,v 1.9 2009/08/18 17:02:00 dyoung Exp $ */
+/* $NetBSD: isa_machdep.c,v 1.10 2009/08/19 15:14:59 dyoung Exp $ */
/*-
* Copyright (c) 1996-1998 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.9 2009/08/18 17:02:00 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.10 2009/08/19 15:14:59 dyoung Exp $");
#include "opt_irqstats.h"
@@ -196,6 +196,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