dect
/
linux-2.6
Archived
13
0
Fork 0

ACPI: remove unnecessary INIT_LIST_HEAD

There is no need to initialize the node before appending it to the list.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Andy Shevchenko 2012-11-27 13:49:36 +01:00 committed by Rafael J. Wysocki
parent 5923f986ac
commit 752cad760b
1 changed files with 0 additions and 1 deletions

View File

@ -426,7 +426,6 @@ static acpi_status acpi_dev_new_resource_entry(struct resource *r,
c->error = -ENOMEM;
return AE_NO_MEMORY;
}
INIT_LIST_HEAD(&rentry->node);
rentry->res = *r;
list_add_tail(&rentry->node, c->list);
c->count++;