Skip to content

Instantly share code, notes, and snippets.

@mgalgs
Created May 10, 2013 21:19
Show Gist options
  • Save mgalgs/5557506 to your computer and use it in GitHub Desktop.
Save mgalgs/5557506 to your computer and use it in GitHub Desktop.
static void __init do_initcall_level(int level)
{
initcall_t *fn;
/* ... */
for (fn = initcall_levels[level]; fn < initcall_levels[level+1]; fn++)
do_one_initcall(*fn);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment