diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-18 07:20:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-18 07:20:19 -0700 |
commit | 06ee772043c7ad125f2c2e6a08dc563706f39e8d (patch) | |
tree | 36575def46dbf339c91bcfdf34737f81d887b1fc /lib | |
parent | fd25a1f556760dbd6e29dec66c70223a8912cdb2 (diff) | |
parent | 1fb2f77c037624601fd214fb7c29faa84cd7bdd7 (diff) | |
download | kernel_samsung_smdk4412-06ee772043c7ad125f2c2e6a08dc563706f39e8d.zip kernel_samsung_smdk4412-06ee772043c7ad125f2c2e6a08dc563706f39e8d.tar.gz kernel_samsung_smdk4412-06ee772043c7ad125f2c2e6a08dc563706f39e8d.tar.bz2 |
Merge branch 'core-debugobjects-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core-debugobjects-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
debugobjects: Section mismatch cleanup
Diffstat (limited to 'lib')
-rw-r--r-- | lib/debugobjects.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugobjects.c b/lib/debugobjects.c index b862b30..bf007a4 100644 --- a/lib/debugobjects.c +++ b/lib/debugobjects.c @@ -774,7 +774,7 @@ static int __init fixup_free(void *addr, enum debug_obj_state state) } } -static int +static int __init check_results(void *addr, enum debug_obj_state state, int fixups, int warnings) { struct debug_bucket *db; @@ -917,7 +917,7 @@ void __init debug_objects_early_init(void) /* * Convert the statically allocated objects to dynamic ones: */ -static int debug_objects_replace_static_objects(void) +static int __init debug_objects_replace_static_objects(void) { struct debug_bucket *db = obj_hash; struct hlist_node *node, *tmp; |