The patch titled pure_initcall ID inconsistency has been added to the -mm tree. Its filename is pure_initcall-id-inconsistency.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: pure_initcall ID inconsistency From: Michael Buesch <mb@xxxxxxxxx> 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@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/init.h~pure_initcall-id-inconsistency include/linux/init.h --- a/include/linux/init.h~pure_initcall-id-inconsistency +++ a/include/linux/init.h @@ -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) _ Patches currently in -mm which might be from mb@xxxxxxxxx are origin.patch merge-the-sonics-silicon-backplane-subsystem.patch ssb-add-a-driver-for-the-broadcom-ohci-core.patch hwrng-add-type-categories.patch pure_initcall-id-inconsistency.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html