diff options
author | mdodd <mdodd@FreeBSD.org> | 1999-10-09 03:46:28 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 1999-10-09 03:46:28 +0000 |
commit | 5f8b8c74e78c3ccfeed0de810e18bbba033afb0f (patch) | |
tree | 43566419cb3887037402d92c25140f0dda571411 | |
parent | a023f5ba4d781daf76bf105eb516a6c2c128ed91 (diff) | |
download | FreeBSD-src-5f8b8c74e78c3ccfeed0de810e18bbba033afb0f.zip FreeBSD-src-5f8b8c74e78c3ccfeed0de810e18bbba033afb0f.tar.gz |
Switch over to the new location in sys/dev/dpt.
Fix a forgotten #include
-rw-r--r-- | sys/conf/files | 3 | ||||
-rw-r--r-- | sys/dev/dpt/dpt_pci.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sys/conf/files b/sys/conf/files index 9dc86f2..847893e 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -101,6 +101,8 @@ dev/buslogic/bt_mca.c optional bt mca dev/ccd/ccd.c optional ccd #dev/dpt/dpt_control.c optional dpt dev/dpt/dpt_scsi.c optional dpt +dev/dpt/dpt_eisa.c optional dpt eisa +dev/dpt/dpt_pci.c optional dpt pci dev/ed/if_ed_pci.c optional ed pci dev/en/midway.c optional en dev/ep/if_ep.c optional ep @@ -660,7 +662,6 @@ dev/bktr/bktr_audio.c optional bktr pci dev/bktr/bktr_os.c optional bktr pci pci/bt_pci.c optional bt pci pci/cy_pci.c optional cy pci -pci/dpt_pci.c optional dpt pci pci/ida_pci.c optional ida pci pci/if_al.c optional al pci/if_ax.c optional ax diff --git a/sys/dev/dpt/dpt_pci.c b/sys/dev/dpt/dpt_pci.c index 9df90db..884b6b6 100644 --- a/sys/dev/dpt/dpt_pci.c +++ b/sys/dev/dpt/dpt_pci.c @@ -52,7 +52,7 @@ #include <cam/scsi/scsi_all.h> #include <dev/dpt/dpt.h> -#include <pci/dpt_pci.h> +#include <dev/dpt/dpt_pci.h> #define PCI_BASEADR0 PCI_MAP_REG_START /* I/O Address */ #define PCI_BASEADR1 PCI_MAP_REG_START + 4 /* Mem I/O Address */ |