Commit dc595eb9 authored by Andy Grover's avatar Andy Grover

ACPI: Update version, and other trivialities

parent 916e723b
...@@ -290,7 +290,7 @@ acpi_ex_digits_needed ( ...@@ -290,7 +290,7 @@ acpi_ex_digits_needed (
* acpi_integer is unsigned, so we don't worry about a '-' * acpi_integer is unsigned, so we don't worry about a '-'
*/ */
if ((current_value = value) == 0) { if ((current_value = value) == 0) {
return_VALUE (1); return_VALUE (1);
} }
num_digits = 0; num_digits = 0;
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
/* Version string */ /* Version string */
#define ACPI_CA_VERSION 0x20030619 #define ACPI_CA_VERSION 0x20030714
/* Maximum objects in the various object caches */ /* Maximum objects in the various object caches */
......
...@@ -134,6 +134,9 @@ ...@@ -134,6 +134,9 @@
#elif defined(__FreeBSD__) #elif defined(__FreeBSD__)
#include "acfreebsd.h" #include "acfreebsd.h"
#elif defined(__NetBSD__)
#include "acnetbsd.h"
#elif defined(MODESTO) #elif defined(MODESTO)
#include "acmodesto.h" #include "acmodesto.h"
...@@ -187,13 +190,14 @@ ...@@ -187,13 +190,14 @@
#define DEBUGGER_SINGLE_THREADED 0 #define DEBUGGER_SINGLE_THREADED 0
#define DEBUGGER_MULTI_THREADED 1 #define DEBUGGER_MULTI_THREADED 1
#ifndef DEBUGGER_THREADING
#ifdef ACPI_APPLICATION #ifdef ACPI_APPLICATION
#define DEBUGGER_THREADING DEBUGGER_SINGLE_THREADED #define DEBUGGER_THREADING DEBUGGER_SINGLE_THREADED
#else #else
#define DEBUGGER_THREADING DEBUGGER_MULTI_THREADED #define DEBUGGER_THREADING DEBUGGER_MULTI_THREADED
#endif #endif
#endif /* !DEBUGGER_THREADING */
/****************************************************************************** /******************************************************************************
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment