diff --git a/source/include/acconfig.h b/source/include/acconfig.h index 73fbfd1e0..8958147e5 100644 --- a/source/include/acconfig.h +++ b/source/include/acconfig.h @@ -118,7 +118,6 @@ #define _CONFIG_H - /****************************************************************************** * * Compile-time options @@ -136,7 +135,6 @@ */ - /****************************************************************************** * * Subsystem Constants @@ -144,14 +142,17 @@ *****************************************************************************/ - /* Version string */ #define ACPI_CA_VERSION __DATE__ /* Name of host operating system (returned by the _OS_ namespace object) */ +#ifdef _LINUX +#define ACPI_OS_NAME "Linux" +#else #define ACPI_OS_NAME "Intel ACPI/CA Core Subsystem" +#endif /* @@ -227,7 +228,6 @@ #endif - /****************************************************************************** * * ACPI Specification constants (Do not change unless the specification changes) @@ -272,6 +272,5 @@ #define MAX_PACKAGE_DEPTH 16 - #endif /* _CONFIG_H */