pure_initcall ID inconsistency
pure_initcall uses the same ID as core_initcall. I guess that's a typo and it should use its own ID. Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0e6ff1580f
commit
73dd1166af
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ void prepare_namespace(void);
|
|||
*
|
||||
* This only exists for built-in code, not for modules.
|
||||
*/
|
||||
#define pure_initcall(fn) __define_initcall("0",fn,1)
|
||||
#define pure_initcall(fn) __define_initcall("0",fn,0)
|
||||
|
||||
#define core_initcall(fn) __define_initcall("1",fn,1)
|
||||
#define core_initcall_sync(fn) __define_initcall("1s",fn,1s)
|
||||
|
|
Loading…
Reference in a new issue