The patch titled macintosh: replace deprecated __initcall with device_initcall has been removed from the -mm tree. Its filename was macintosh-replace-deprecated-__initcall-with-device_initcall.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: macintosh: replace deprecated __initcall with device_initcall From: "Robert P. J. Day" <rpjday@xxxxxxxxxxxxxx> Signed-off-by: Robert P. J. Day <rpjday@xxxxxxxxxxxxxx> Acked-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/macintosh/adb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/macintosh/adb.c~macintosh-replace-deprecated-__initcall-with-device_initcall drivers/macintosh/adb.c --- a/drivers/macintosh/adb.c~macintosh-replace-deprecated-__initcall-with-device_initcall +++ a/drivers/macintosh/adb.c @@ -334,7 +334,7 @@ int __init adb_init(void) return 0; } -__initcall(adb_init); +device_initcall(adb_init); static int do_adb_reset_bus(void) _ Patches currently in -mm which might be from rpjday@xxxxxxxxxxxxxx are origin.patch linux-next.patch kbuild-remove-final-references-to-deprecated-unreferenced-topdir.patch xtensa-warn-about-including-asm-rwsemh-directly.patch xtensa-use-newer-__spin_lock_unlocked-macro.patch remove-apparently-unused-fd1772h-header-file.patch init-delete-hard-coded-setting-and-testing-of-build_cramdisk.patch lib-allow-memparse-to-accept-a-null-and-ignorable-second-parm.patch lib-allow-memparse-to-accept-a-null-and-ignorable-second-parm-checkpatch-fixes.patch lists-remove-a-redundant-conditional-definition-of-list_add.patch zorro-replace-deprecated-__initcall-with-equivalent-device_initcall.patch spi-kconfig-simplifications.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