mirror of https://gitee.com/openkylin/linux.git
ACPICA: Add new subsystem state bit that is set after SubsystemInitialize is called
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
65e4b9b05d
commit
cb219bb6bf
|
@ -67,6 +67,7 @@ acpi_status acpi_initialize_subsystem(void)
|
|||
|
||||
ACPI_FUNCTION_TRACE(acpi_initialize_subsystem);
|
||||
|
||||
acpi_gbl_startup_flags = ACPI_SUBSYSTEM_INITIALIZE;
|
||||
ACPI_DEBUG_EXEC(acpi_ut_init_stack_ptr_trace());
|
||||
|
||||
/* Initialize the OS-Dependent layer */
|
||||
|
|
|
@ -412,7 +412,8 @@ typedef u64 acpi_integer;
|
|||
/*
|
||||
* Initialization state
|
||||
*/
|
||||
#define ACPI_INITIALIZED_OK 0x01
|
||||
#define ACPI_SUBSYSTEM_INITIALIZE 0x01
|
||||
#define ACPI_INITIALIZED_OK 0x02
|
||||
|
||||
/*
|
||||
* Power state values
|
||||
|
|
Loading…
Reference in New Issue