Module Name: src
Committed By: dyoung
Date: Sun Jul 17 23:08:56 UTC 2011
Modified Files:
src/sys/arch/powerpc/booke/dev: pq3cfi.c pq3nandfcm.c
Log Message:
#include <sys/bus.h> not <machine/bus.h>.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/powerpc/booke/dev/pq3cfi.c \
src/sys/arch/powerpc/booke/dev/pq3nandfcm.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/powerpc/booke/dev/pq3cfi.c
diff -u src/sys/arch/powerpc/booke/dev/pq3cfi.c:1.1 src/sys/arch/powerpc/booke/dev/pq3cfi.c:1.2
--- src/sys/arch/powerpc/booke/dev/pq3cfi.c:1.1 Fri Jul 15 19:19:56 2011
+++ src/sys/arch/powerpc/booke/dev/pq3cfi.c Sun Jul 17 23:08:56 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pq3cfi.c,v 1.1 2011/07/15 19:19:56 cliff Exp $ */
+/* $NetBSD: pq3cfi.c,v 1.2 2011/07/17 23:08:56 dyoung Exp $ */
/*
* NOR CFI driver support for booke
@@ -8,7 +8,7 @@
#include "locators.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pq3cfi.c,v 1.1 2011/07/15 19:19:56 cliff Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pq3cfi.c,v 1.2 2011/07/17 23:08:56 dyoung Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -16,7 +16,7 @@
#include <sys/device.h>
#include <sys/endian.h>
-#include <machine/bus.h>
+#include <sys/bus.h>
#include <powerpc/booke/cpuvar.h>
Index: src/sys/arch/powerpc/booke/dev/pq3nandfcm.c
diff -u src/sys/arch/powerpc/booke/dev/pq3nandfcm.c:1.1 src/sys/arch/powerpc/booke/dev/pq3nandfcm.c:1.2
--- src/sys/arch/powerpc/booke/dev/pq3nandfcm.c:1.1 Thu Jun 30 04:44:26 2011
+++ src/sys/arch/powerpc/booke/dev/pq3nandfcm.c Sun Jul 17 23:08:56 2011
@@ -32,14 +32,14 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pq3nandfcm.c,v 1.1 2011/06/30 04:44:26 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pq3nandfcm.c,v 1.2 2011/07/17 23:08:56 dyoung Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/cpu.h>
-#include <machine/bus.h>
+#include <sys/bus.h>
#include <powerpc/booke/cpuvar.h>
#include <powerpc/booke/e500reg.h>