The patch titled powerpc: fsl_soc: remove mpc83xx_wdt code has been added to the -mm tree. Its filename is powerpc-fsl_soc-remove-mpc83xx_wdt-code.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** 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 The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: powerpc: fsl_soc: remove mpc83xx_wdt code From: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx> mpc83xx_wdt is the OF driver now, so we don't need fsl_soc constructor. Signed-off-by: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx> Cc: Kumar Gala <galak@xxxxxxxxxxxxxxxxxxx> Cc: Wim Van Sebroeck <wim@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/sysdev/fsl_soc.c | 46 -------------------------------- 1 file changed, 46 deletions(-) diff -puN arch/powerpc/sysdev/fsl_soc.c~powerpc-fsl_soc-remove-mpc83xx_wdt-code arch/powerpc/sysdev/fsl_soc.c --- a/arch/powerpc/sysdev/fsl_soc.c~powerpc-fsl_soc-remove-mpc83xx_wdt-code +++ a/arch/powerpc/sysdev/fsl_soc.c @@ -542,52 +542,6 @@ err: arch_initcall(fsl_i2c_of_init); #endif -#ifdef CONFIG_PPC_83xx -static int __init mpc83xx_wdt_init(void) -{ - struct resource r; - struct device_node *np; - struct platform_device *dev; - u32 freq = fsl_get_sys_freq(); - int ret; - - np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt"); - - if (!np) { - ret = -ENODEV; - goto nodev; - } - - memset(&r, 0, sizeof(r)); - - ret = of_address_to_resource(np, 0, &r); - if (ret) - goto err; - - dev = platform_device_register_simple("mpc83xx_wdt", 0, &r, 1); - if (IS_ERR(dev)) { - ret = PTR_ERR(dev); - goto err; - } - - ret = platform_device_add_data(dev, &freq, sizeof(freq)); - if (ret) - goto unreg; - - of_node_put(np); - return 0; - -unreg: - platform_device_unregister(dev); -err: - of_node_put(np); -nodev: - return ret; -} - -arch_initcall(mpc83xx_wdt_init); -#endif - static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type) { if (!phy_type) _ Patches currently in -mm which might be from avorontsov@xxxxxxxxxxxxx are origin.patch serial-fix-driver_name-conflicts.patch linux-next.patch git-leds.patch mpc83xx_wdt-convert-to-the-of-platform-driver.patch mpc83xx_wdt-add-support-for-mpc86xx-cpus.patch mpc83xx_wdt-rename-to-mpc8xxx_wdt.patch mpc8xxx_wdt-various-renames-mostly-s-mpc83xx-mpc8xxx-g.patch mpc8xxx_wdt-add-support-for-mpc8xx-watchdogs.patch powerpc-fsl_soc-remove-mpc83xx_wdt-code.patch 86xx-mpc8610_hpcd-add-watchdog-node.patch hgafb-fix-module-removal.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