|
@@ -719,7 +719,6 @@ static int __init initcall_blacklist(char *str)
|
|
|
|
|
|
static bool __init_or_module initcall_blacklisted(initcall_t fn)
|
|
|
{
|
|
|
- struct list_head *tmp;
|
|
|
struct blacklist_entry *entry;
|
|
|
char *fn_name;
|
|
|
|
|
@@ -727,8 +726,7 @@ static bool __init_or_module initcall_blacklisted(initcall_t fn)
|
|
|
if (!fn_name)
|
|
|
return false;
|
|
|
|
|
|
- list_for_each(tmp, &blacklisted_initcalls) {
|
|
|
- entry = list_entry(tmp, struct blacklist_entry, next);
|
|
|
+ list_for_each_entry(entry, &blacklisted_initcalls, next) {
|
|
|
if (!strcmp(fn_name, entry->buf)) {
|
|
|
pr_debug("initcall %s blacklisted\n", fn_name);
|
|
|
kfree(fn_name);
|