Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72825
b: refs/heads/master
c: 1544fdb
h: refs/heads/master
i:
  72823: 892e6c4
v: v3
  • Loading branch information
Adrian Bunk authored and Len Brown committed Oct 25, 2007
1 parent 690e60c commit 62b0186
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9e4172cde0f793dbf48c99bdfd0abe7d18e4b09
refs/heads/master: 1544fdbc857cbe8afca16a521d3254346befeb06
4 changes: 2 additions & 2 deletions trunk/drivers/acpi/ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ EXPORT_SYMBOL_GPL(acpi_ec_add_query_handler);

void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
{
struct acpi_ec_query_handler *handler;
struct acpi_ec_query_handler *handler, *tmp;
mutex_lock(&ec->lock);
list_for_each_entry(handler, &ec->list, node) {
list_for_each_entry_safe(handler, tmp, &ec->list, node) {
if (query_bit == handler->query_bit) {
list_del(&handler->node);
kfree(handler);
Expand Down

0 comments on commit 62b0186

Please sign in to comment.