diff options
| author | Michael Buesch <mb@bu3sch.de> | 2007-07-31 03:38:54 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 18:39:41 -0400 |
| commit | 73dd1166af9a7a1e24554991236ddea740df0dbd (patch) | |
| tree | 8fe66f07c27dddf5f6578c9cf265514a235caad6 /include | |
| parent | 0e6ff1580ff5d8dc10ec58d22b3e1a6f372f7f40 (diff) | |
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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/init.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/init.h b/include/linux/init.h index f0d0e3295a9b..1a4a283d19a9 100644 --- a/include/linux/init.h +++ b/include/linux/init.h | |||
| @@ -114,7 +114,7 @@ void prepare_namespace(void); | |||
| 114 | * | 114 | * |
| 115 | * This only exists for built-in code, not for modules. | 115 | * This only exists for built-in code, not for modules. |
| 116 | */ | 116 | */ |
| 117 | #define pure_initcall(fn) __define_initcall("0",fn,1) | 117 | #define pure_initcall(fn) __define_initcall("0",fn,0) |
| 118 | 118 | ||
| 119 | #define core_initcall(fn) __define_initcall("1",fn,1) | 119 | #define core_initcall(fn) __define_initcall("1",fn,1) |
| 120 | #define core_initcall_sync(fn) __define_initcall("1s",fn,1s) | 120 | #define core_initcall_sync(fn) __define_initcall("1s",fn,1s) |
