mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
ACPI: EC: Add new query handler to list head.
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
8db85d4c9a
commit
30c08574da
@ -425,7 +425,7 @@ int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
|
|||||||
handler->func = func;
|
handler->func = func;
|
||||||
handler->data = data;
|
handler->data = data;
|
||||||
mutex_lock(&ec->lock);
|
mutex_lock(&ec->lock);
|
||||||
list_add_tail(&handler->node, &ec->list);
|
list_add(&handler->node, &ec->list);
|
||||||
mutex_unlock(&ec->lock);
|
mutex_unlock(&ec->lock);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -440,7 +440,6 @@ void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
|
|||||||
if (query_bit == handler->query_bit) {
|
if (query_bit == handler->query_bit) {
|
||||||
list_del(&handler->node);
|
list_del(&handler->node);
|
||||||
kfree(handler);
|
kfree(handler);
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mutex_unlock(&ec->lock);
|
mutex_unlock(&ec->lock);
|
||||||
|
Loading…
Reference in New Issue
Block a user