Module Name: src
Committed By: tsutsui
Date: Sun Jun 13 03:08:15 UTC 2010
Modified Files:
src/sys/dev/ic: rt2560.c
Log Message:
No need to include PCI header files in bus independent code.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/ic/rt2560.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/dev/ic/rt2560.c
diff -u src/sys/dev/ic/rt2560.c:1.23 src/sys/dev/ic/rt2560.c:1.24
--- src/sys/dev/ic/rt2560.c:1.23 Mon Apr 5 07:19:35 2010
+++ src/sys/dev/ic/rt2560.c Sun Jun 13 03:08:15 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: rt2560.c,v 1.23 2010/04/05 07:19:35 joerg Exp $ */
+/* $NetBSD: rt2560.c,v 1.24 2010/06/13 03:08:15 tsutsui Exp $ */
/* $OpenBSD: rt2560.c,v 1.15 2006/04/20 20:31:12 miod Exp $ */
/* $FreeBSD: rt2560.c,v 1.3 2006/03/21 21:15:43 damien Exp $*/
@@ -24,7 +24,7 @@
* http://www.ralinktech.com/
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rt2560.c,v 1.23 2010/04/05 07:19:35 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rt2560.c,v 1.24 2010/06/13 03:08:15 tsutsui Exp $");
#include <sys/param.h>
@@ -62,10 +62,6 @@
#include <dev/ic/rt2560reg.h>
#include <dev/ic/rt2560var.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcivar.h>
-#include <dev/pci/pcidevs.h>
-
#ifdef RAL_DEBUG
#define DPRINTF(x) do { if (rt2560_debug > 0) printf x; } while (0)
#define DPRINTFN(n, x) do { if (rt2560_debug >= (n)) printf x; } while (0)