Merge branch 'ec' into release
This commit is contained in:
@@ -398,10 +398,10 @@ static ssize_t counter_set(struct kobject *kobj,
|
||||
if (index < num_gpes) {
|
||||
if (!strcmp(buf, "disable\n") &&
|
||||
(status & ACPI_EVENT_FLAG_ENABLED))
|
||||
result = acpi_disable_gpe(handle, index, ACPI_NOT_ISR);
|
||||
result = acpi_disable_gpe(handle, index);
|
||||
else if (!strcmp(buf, "enable\n") &&
|
||||
!(status & ACPI_EVENT_FLAG_ENABLED))
|
||||
result = acpi_enable_gpe(handle, index, ACPI_NOT_ISR);
|
||||
result = acpi_enable_gpe(handle, index);
|
||||
else if (!strcmp(buf, "clear\n") &&
|
||||
(status & ACPI_EVENT_FLAG_SET))
|
||||
result = acpi_clear_gpe(handle, index, ACPI_NOT_ISR);
|
||||
|
Reference in New Issue
Block a user