diff options
author | scottl <scottl@FreeBSD.org> | 2005-03-02 15:13:37 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2005-03-02 15:13:37 +0000 |
commit | 4d2ae547ed8db4cde08c659ef5e61968ecaab530 (patch) | |
tree | 6759effb32d4fe5a1e027cc364ea01434ed6cffa /sys/dev/hptmv | |
parent | f44acad97a770c6b228d65d9c18a0682fc3f3cc1 (diff) | |
download | FreeBSD-src-4d2ae547ed8db4cde08c659ef5e61968ecaab530.zip FreeBSD-src-4d2ae547ed8db4cde08c659ef5e61968ecaab530.tar.gz |
Clean up the botching of the previous repo-copy. Reference the included
headers from the correct location.
Submitted by: Tai-hwa Liang
Diffstat (limited to 'sys/dev/hptmv')
-rw-r--r-- | sys/dev/hptmv/entry.c | 2 | ||||
-rw-r--r-- | sys/dev/hptmv/global.h | 14 | ||||
-rw-r--r-- | sys/dev/hptmv/gui_lib.c | 2 | ||||
-rw-r--r-- | sys/dev/hptmv/hptproc.c | 2 | ||||
-rw-r--r-- | sys/dev/hptmv/ioctl.c | 2 | ||||
-rw-r--r-- | sys/dev/hptmv/mvStorageDev.h | 2 |
6 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/hptmv/entry.c b/sys/dev/hptmv/entry.c index 0e42f6e..504ac5b 100644 --- a/sys/dev/hptmv/entry.c +++ b/sys/dev/hptmv/entry.c @@ -44,7 +44,7 @@ #include <dev/hptmv/global.h> #include <dev/hptmv/hptintf.h> #include <dev/hptmv/osbsd.h> -#include <contrib/dev/hptmv/access601.h> +#include <dev/hptmv/access601.h> #ifdef DEBUG #ifdef DEBUG_LEVEL diff --git a/sys/dev/hptmv/global.h b/sys/dev/hptmv/global.h index 3f8d4dd..90c62ae 100644 --- a/sys/dev/hptmv/global.h +++ b/sys/dev/hptmv/global.h @@ -29,8 +29,8 @@ #define _GLOBAL_H_ #include <dev/hptmv/mvOs.h> -#include <contrib/dev/hptmv/mvSata.h> -#include <contrib/dev/hptmv/mvStorageDev.h> +#include <dev/hptmv/mvSata.h> +#include <dev/hptmv/mvStorageDev.h> #define COMPANY "HighPoint Technologies, Inc." #define COPYRIGHT "(c) 2000-2004. HighPoint Technologies, Inc." @@ -203,11 +203,11 @@ extern void HPTLIBAPI ioctl_ReportEvent(UCHAR event, PVOID param); UCHAR ptr##__buf[512]; \ type ptr=(type)ptr##__buf -#include <contrib/dev/hptmv/atapi.h> -#include <contrib/dev/hptmv/command.h> -#include <contrib/dev/hptmv/array.h> -#include <contrib/dev/hptmv/raid5n.h> -#include <contrib/dev/hptmv/vdevice.h> +#include <dev/hptmv/atapi.h> +#include <dev/hptmv/command.h> +#include <dev/hptmv/array.h> +#include <dev/hptmv/raid5n.h> +#include <dev/hptmv/vdevice.h> int HPTLIBAPI fDeReadWrite(PDevice pDev, ULONG Lba, UCHAR Cmd, void *tmpBuffer); void HPTLIBAPI fDeSelectMode(PDevice pDev, UCHAR NewMode); diff --git a/sys/dev/hptmv/gui_lib.c b/sys/dev/hptmv/gui_lib.c index 9ef289e..41ab69a 100644 --- a/sys/dev/hptmv/gui_lib.c +++ b/sys/dev/hptmv/gui_lib.c @@ -45,7 +45,7 @@ #include <dev/hptmv/global.h> #include <dev/hptmv/hptintf.h> #include <dev/hptmv/osbsd.h> -#include <contrib/dev/hptmv/access601.h> +#include <dev/hptmv/access601.h> static int hpt_get_driver_capabilities(PDRIVER_CAPABILITIES cap); static int hpt_get_controller_count(void); diff --git a/sys/dev/hptmv/hptproc.c b/sys/dev/hptmv/hptproc.c index dc43129..1c4fb90 100644 --- a/sys/dev/hptmv/hptproc.c +++ b/sys/dev/hptmv/hptproc.c @@ -38,7 +38,7 @@ #include <dev/hptmv/global.h> #include <dev/hptmv/hptintf.h> #include <dev/hptmv/osbsd.h> -#include <contrib/dev/hptmv/access601.h> +#include <dev/hptmv/access601.h> int hpt_rescan_all(void); diff --git a/sys/dev/hptmv/ioctl.c b/sys/dev/hptmv/ioctl.c index 0f9f71d..c75c98f 100644 --- a/sys/dev/hptmv/ioctl.c +++ b/sys/dev/hptmv/ioctl.c @@ -36,7 +36,7 @@ #include <dev/hptmv/global.h> #include <dev/hptmv/hptintf.h> #include <dev/hptmv/osbsd.h> -#include <contrib/dev/hptmv/access601.h> +#include <dev/hptmv/access601.h> #pragma pack(1) diff --git a/sys/dev/hptmv/mvStorageDev.h b/sys/dev/hptmv/mvStorageDev.h index 8b98958..5d533fe 100644 --- a/sys/dev/hptmv/mvStorageDev.h +++ b/sys/dev/hptmv/mvStorageDev.h @@ -24,7 +24,7 @@ * SUCH DAMAGE. * * $FreeBSD$ - * + */ #ifndef __INCmvStorageDevh #define __INCmvStorageDevh |