diff options
author | msmith <msmith@FreeBSD.org> | 2000-12-08 22:11:23 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2000-12-08 22:11:23 +0000 |
commit | c27f2d3c492a3d78680bb4c52f0be2c345735e1d (patch) | |
tree | ab8e18698d3c3ee4b4443c78e8ba86065bed1ff3 /sys/modules | |
parent | 3e12cdd63653239c3c71bf1e7042f1149134e630 (diff) | |
download | FreeBSD-src-c27f2d3c492a3d78680bb4c52f0be2c345735e1d.zip FreeBSD-src-c27f2d3c492a3d78680bb4c52f0be2c345735e1d.tar.gz |
Next phase in the PCI subsystem cleanup.
- Move PCI core code to dev/pci.
- Split bridge code out into separate modules.
- Remove the descriptive strings from the bridge drivers. If you
want to know what a device is, use pciconf. Add support for
broadly identifying devices based on class/subclass, and for
parsing a preloaded device identification database so that if
you want to waste the memory, you can identify *anything* we know
about.
- Remove machine-dependant code from the core PCI code. APIC interrupt
mapping is performed by shadowing the intline register in machine-
dependant code.
- Bring interrupt routing support to the Alpha
(although many platforms don't yet support routing or mapping
interrupts entirely correctly). This resulted in spamming
<sys/bus.h> into more places than it really should have gone.
- Put sys/dev on the kernel/modules include path. This avoids
having to change *all* the pci*.h includes.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/agp/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/netgraph/tty/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/osf1/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/agp/Makefile b/sys/modules/agp/Makefile index 7eb2ed7..dcb415d 100644 --- a/sys/modules/agp/Makefile +++ b/sys/modules/agp/Makefile @@ -6,6 +6,6 @@ SRCS = agp.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c SRCS += agp_i810.c agp_if.c SRCS += device_if.h bus_if.h agp_if.h pci_if.h SRCS += opt_bdg.h opt_bus.h opt_pci.h -MFILES = kern/device_if.m kern/bus_if.m pci/agp_if.m pci/pci_if.m +MFILES = kern/device_if.m kern/bus_if.m pci/agp_if.m dev/pci/pci_if.m .include <bsd.kmod.mk> diff --git a/sys/modules/netgraph/tty/Makefile b/sys/modules/netgraph/tty/Makefile index 3ee6198..7052f52 100644 --- a/sys/modules/netgraph/tty/Makefile +++ b/sys/modules/netgraph/tty/Makefile @@ -3,7 +3,7 @@ KMOD= ng_tty SRCS= ng_tty.c device_if.h bus_if.h pci_if.h -MFILES= kern/device_if.m kern/bus_if.m pci/agp_if.m pci/pci_if.m +MFILES= kern/device_if.m kern/bus_if.m pci/agp_if.m dev/pci/pci_if.m NOMAN= .include <bsd.kmod.mk> diff --git a/sys/modules/osf1/Makefile b/sys/modules/osf1/Makefile index 4f2eac5..8a24226 100644 --- a/sys/modules/osf1/Makefile +++ b/sys/modules/osf1/Makefile @@ -7,7 +7,7 @@ MAINTAINER= gallatin@FreeBSD.org KMOD= osf1 SRCS= osf1_ioctl.c osf1_misc.c osf1_signal.c osf1_sysent.c \ osf1_mount.c imgact_osf1.c osf1_sysvec.c opt_compat.h \ - opt_simos.h opt_nfs.h vnode_if.h + opt_simos.h opt_nfs.h device_if.h bus_if.h vnode_if.h #CFLAGS+= -g EXPORT_SYMS= _osf1 |