Commit 3bb598fb authored by Kirill A. Shutemov's avatar Kirill A. Shutemov Committed by Linus Torvalds

drivers/dca/dca-core.c: use list_move() instead of list_del()/list_add() combination

Signed-off-by: default avatarKirill A. Shutemov <kirill@shutemov.name>
Cc: Maciej Sosnowski <maciej.sosnowski@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f99a9933
...@@ -111,10 +111,8 @@ static void unregister_dca_providers(void) ...@@ -111,10 +111,8 @@ static void unregister_dca_providers(void)
/* at this point only one domain in the list is expected */ /* at this point only one domain in the list is expected */
domain = list_first_entry(&dca_domains, struct dca_domain, node); domain = list_first_entry(&dca_domains, struct dca_domain, node);
list_for_each_entry_safe(dca, _dca, &domain->dca_providers, node) { list_for_each_entry_safe(dca, _dca, &domain->dca_providers, node)
list_del(&dca->node); list_move(&dca->node, &unregistered_providers);
list_add(&dca->node, &unregistered_providers);
}
dca_free_domain(domain); dca_free_domain(domain);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment