diff options
author | Mitsuru IWASAKI <iwasaki@FreeBSD.org> | 2002-04-11 09:28:43 +0000 |
---|---|---|
committer | Mitsuru IWASAKI <iwasaki@FreeBSD.org> | 2002-04-11 09:28:43 +0000 |
commit | f01aed2f4a9833d2ffc3eb7309901e6c80e29f9d (patch) | |
tree | 81e50de753efcfe049706c6475d1e15128cf9e0c /devel/acpicatools/files/patch-20020404 | |
parent | Update to 1.5. (diff) |
update for acpica-unix-20020404.
Notes
Notes:
svn path=/head/; revision=57566
Diffstat (limited to 'devel/acpicatools/files/patch-20020404')
-rw-r--r-- | devel/acpicatools/files/patch-20020404 | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/devel/acpicatools/files/patch-20020404 b/devel/acpicatools/files/patch-20020404 new file mode 100644 index 000000000000..53a25f43cd6d --- /dev/null +++ b/devel/acpicatools/files/patch-20020404 @@ -0,0 +1,33 @@ +--- osunixxf.c.orig Fri Oct 19 05:21:52 2001 ++++ osunixxf.c Thu Nov 1 21:44:36 2001 +@@ -706,7 +706,7 @@ + UINT32 milliseconds) + { + +- sleep ((seconds * 1000) + milliseconds); ++ usleep ((seconds * 1000) + milliseconds); + return; + } + +@@ -965,4 +965,11 @@ + return (AE_OK); + } + ++ACPI_STATUS ++AcpiOsGetRootPointer ( ++ UINT32 Flags, ++ ACPI_POINTER *RsdpPhysicalAddress) ++{ ++ return (AE_OK); ++} + +--- include/platform/acfreebsd.h.orig Fri Apr 5 08:43:53 2002 ++++ include/platform/acfreebsd.h Thu Apr 11 14:38:34 2002 +@@ -156,6 +156,7 @@ + + #define __cli() + #define __sti() ++#define ACPI_FLUSH_CPU_CACHE() + + #endif /* _KERNEL */ + |