diff options
author | imp <imp@FreeBSD.org> | 2003-08-22 05:54:52 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-08-22 05:54:52 +0000 |
commit | c23aaeeba46cfb112bb22a74c0898470331d3e18 (patch) | |
tree | 633ff3cbdbfdb63210ca731968f72ea813a82ed7 /sys/dev/fb | |
parent | 15f81fe316b4b7defea9d5f5127ba0853ed8bfcd (diff) | |
download | FreeBSD-src-c23aaeeba46cfb112bb22a74c0898470331d3e18.zip FreeBSD-src-c23aaeeba46cfb112bb22a74c0898470331d3e18.tar.gz |
Prefer new location of pci include files (which have only been in the
tree for two or more years now), except in a few places where there's
code to be compatible with older versions of FreeBSD.
Diffstat (limited to 'sys/dev/fb')
-rw-r--r-- | sys/dev/fb/boot_font.c | 4 | ||||
-rw-r--r-- | sys/dev/fb/gfb.c | 4 | ||||
-rw-r--r-- | sys/dev/fb/s3_pci.c | 4 | ||||
-rw-r--r-- | sys/dev/fb/tga.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/fb/boot_font.c b/sys/dev/fb/boot_font.c index db82efc..66167ba 100644 --- a/sys/dev/fb/boot_font.c +++ b/sys/dev/fb/boot_font.c @@ -72,8 +72,8 @@ __FBSDID("$FreeBSD$"); #include <sys/bus.h> #include <sys/rman.h> -#include <pci/pcireg.h> -#include <pci/pcivar.h> +#include <dev/pci/pcireg.h> +#include <dev/pci/pcivar.h> #include <dev/fb/fbreg.h> #include <dev/fb/gfb.h> diff --git a/sys/dev/fb/gfb.c b/sys/dev/fb/gfb.c index 4e03169..4667dac 100644 --- a/sys/dev/fb/gfb.c +++ b/sys/dev/fb/gfb.c @@ -80,8 +80,8 @@ __FBSDID("$FreeBSD$"); #include <sys/bus.h> #include <sys/rman.h> -#include <pci/pcireg.h> -#include <pci/pcivar.h> +#include <dev/pci/pcireg.h> +#include <dev/pci/pcivar.h> #include <dev/fb/fbreg.h> #include <dev/fb/gfb.h> diff --git a/sys/dev/fb/s3_pci.c b/sys/dev/fb/s3_pci.c index 69549db..7ad2071 100644 --- a/sys/dev/fb/s3_pci.c +++ b/sys/dev/fb/s3_pci.c @@ -52,8 +52,8 @@ #include <sys/malloc.h> #include <sys/fbio.h> -#include <pci/pcireg.h> -#include <pci/pcivar.h> +#include <dev/pci/pcireg.h> +#include <dev/pci/pcivar.h> #include <machine/md_var.h> #include <machine/vm86.h> diff --git a/sys/dev/fb/tga.c b/sys/dev/fb/tga.c index a5a56c0..8ad6bb5 100644 --- a/sys/dev/fb/tga.c +++ b/sys/dev/fb/tga.c @@ -85,8 +85,8 @@ __FBSDID("$FreeBSD$"); #include <sys/bus.h> #include <sys/rman.h> -#include <pci/pcireg.h> -#include <pci/pcivar.h> +#include <dev/pci/pcireg.h> +#include <dev/pci/pcivar.h> #include <dev/fb/fbreg.h> #include <dev/syscons/syscons.h> |