Module Name:    src
Committed By:   dyoung
Date:           Fri Jul  1 19:17:38 UTC 2011

Modified Files:
        src/sys/arch/sh3/dev: shpcic.c shpcicvar.h

Log Message:
#include <sys/bus.h> instead of <machine/bus.h>.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/sh3/dev/shpcic.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/sh3/dev/shpcicvar.h

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/sh3/dev/shpcic.c
diff -u src/sys/arch/sh3/dev/shpcic.c:1.14 src/sys/arch/sh3/dev/shpcic.c:1.15
--- src/sys/arch/sh3/dev/shpcic.c:1.14	Tue May 17 17:34:52 2011
+++ src/sys/arch/sh3/dev/shpcic.c	Fri Jul  1 19:17:38 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: shpcic.c,v 1.14 2011/05/17 17:34:52 dyoung Exp $	*/
+/*	$NetBSD: shpcic.c,v 1.15 2011/07/01 19:17:38 dyoung Exp $	*/
 
 /*
  * Copyright (c) 2005 NONAKA Kimihiro
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: shpcic.c,v 1.14 2011/05/17 17:34:52 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: shpcic.c,v 1.15 2011/07/01 19:17:38 dyoung Exp $");
 
 #include "opt_pci.h"
 
@@ -47,7 +47,7 @@
 #include <sh3/exception.h>
 #include <sh3/pcicreg.h>
 
-#include <machine/bus.h>
+#include <sys/bus.h>
 #include <machine/intr.h>
 #include <machine/pci_machdep.h>
 

Index: src/sys/arch/sh3/dev/shpcicvar.h
diff -u src/sys/arch/sh3/dev/shpcicvar.h:1.7 src/sys/arch/sh3/dev/shpcicvar.h:1.8
--- src/sys/arch/sh3/dev/shpcicvar.h:1.7	Sun Aug  2 00:06:44 2009
+++ src/sys/arch/sh3/dev/shpcicvar.h	Fri Jul  1 19:17:38 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: shpcicvar.h,v 1.7 2009/08/02 00:06:44 nonaka Exp $	*/
+/*	$NetBSD: shpcicvar.h,v 1.8 2011/07/01 19:17:38 dyoung Exp $	*/
 
 /*-
  * Copyright (c) 2005 NONAKA Kimihiro
@@ -29,7 +29,7 @@
 #ifndef	_SH3_SHPCICVAR_H_
 #define	_SH3_SHPCICVAR_H_
 
-#include <machine/bus.h>
+#include <sys/bus.h>
 
 bus_space_tag_t shpcic_get_bus_io_tag(void);
 bus_space_tag_t shpcic_get_bus_mem_tag(void);

Reply via email to