ACPICA: Linuxize: reduce divergences for 20151218 release
The patch reduces source code differences between the Linux kernel and the ACPICA upstream so that the linuxized ACPICA 20151218 release can be applied with reduced human intervention. The pscode.c has already been out of sync for months, and it becomes more and more difficult to merge pscode.c changes, so instead of update the affected lines of pscode.c, this patch synchronizes entire pscode.c file. Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
b17629dbf7
commit
5431b6543f
|
@ -493,7 +493,6 @@ acpi_ex_create_method(u8 * aml_start,
|
|||
* flag, and sync_level for efficiency.
|
||||
*/
|
||||
method_flags = (u8)operand[1]->integer.value;
|
||||
|
||||
obj_desc->method.param_count =
|
||||
(u8)(method_flags & AML_METHOD_ARG_COUNT);
|
||||
|
||||
|
|
|
@ -298,6 +298,7 @@ acpi_hw_gpe_enable_write(u8 enable_mask,
|
|||
|
||||
gpe_register_info->enable_mask = enable_mask;
|
||||
status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
|
||||
|
||||
return (status);
|
||||
}
|
||||
|
||||
|
|
|
@ -136,6 +136,7 @@ static inline acpi_status acpi_os_initialize_command_signals(void)
|
|||
|
||||
static inline void acpi_os_terminate_command_signals(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue