Module Name: src
Committed By: dyoung
Date: Fri Jul 1 18:36:45 UTC 2011
Modified Files:
src/sys/arch/xen/xen: isa_machdep.c pci_intr_machdep.c
Log Message:
#include <sys/bus.h> instead of <machine/bus.h>.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/xen/xen/isa_machdep.c
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/xen/xen/pci_intr_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/xen/xen/isa_machdep.c
diff -u src/sys/arch/xen/xen/isa_machdep.c:1.23 src/sys/arch/xen/xen/isa_machdep.c:1.24
--- src/sys/arch/xen/xen/isa_machdep.c:1.23 Sat Feb 6 17:48:54 2010
+++ src/sys/arch/xen/xen/isa_machdep.c Fri Jul 1 18:36:45 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.c,v 1.23 2010/02/06 17:48:54 bouyer Exp $ */
+/* $NetBSD: isa_machdep.c,v 1.24 2011/07/01 18:36:45 dyoung Exp $ */
/* NetBSD isa_machdep.c,v 1.11 2004/06/20 18:04:08 thorpej Exp */
/*-
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.23 2010/02/06 17:48:54 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.24 2011/07/01 18:36:45 dyoung Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -76,7 +76,7 @@
#include <sys/proc.h>
#include <sys/mbuf.h>
-#include <machine/bus.h>
+#include <sys/bus.h>
#include <machine/bus_private.h>
#include <machine/pio.h>
Index: src/sys/arch/xen/xen/pci_intr_machdep.c
diff -u src/sys/arch/xen/xen/pci_intr_machdep.c:1.14 src/sys/arch/xen/xen/pci_intr_machdep.c:1.15
--- src/sys/arch/xen/xen/pci_intr_machdep.c:1.14 Mon Apr 4 20:37:55 2011
+++ src/sys/arch/xen/xen/pci_intr_machdep.c Fri Jul 1 18:36:45 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_intr_machdep.c,v 1.14 2011/04/04 20:37:55 dyoung Exp $ */
+/* $NetBSD: pci_intr_machdep.c,v 1.15 2011/07/01 18:36:45 dyoung Exp $ */
/*
* Copyright (c) 2005 Manuel Bouyer.
@@ -26,13 +26,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_intr_machdep.c,v 1.14 2011/04/04 20:37:55 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_intr_machdep.c,v 1.15 2011/07/01 18:36:45 dyoung Exp $");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
-#include <machine/bus.h>
+#include <sys/bus.h>
#include <machine/bus_private.h>
#include <dev/pci/pcivar.h>