The patch titled Subject: parport: convert drivers/parport/* to use module_platform_driver() has been removed from the -mm tree. Its filename was parport-convert-drivers-parport-to-use-module_platform_driver.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/ ------------------------------------------------------ From: Axel Lin <axel.lin@xxxxxxxxx> Subject: parport: convert drivers/parport/* to use module_platform_driver() Convert the drivers in drivers/parport/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx> Cc: Ben Dooks <ben@xxxxxxxxxxxx> Cc: Derrick J. Brashear <shadow@xxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/parport/parport_ax88796.c | 13 +------------ drivers/parport/parport_sunbpp.c | 13 +------------ 2 files changed, 2 insertions(+), 24 deletions(-) diff -puN drivers/parport/parport_ax88796.c~parport-convert-drivers-parport-to-use-module_platform_driver drivers/parport/parport_ax88796.c --- a/drivers/parport/parport_ax88796.c~parport-convert-drivers-parport-to-use-module_platform_driver +++ a/drivers/parport/parport_ax88796.c @@ -420,18 +420,7 @@ static struct platform_driver axdrv = { .resume = parport_ax88796_resume, }; -static int __init parport_ax88796_init(void) -{ - return platform_driver_register(&axdrv); -} - -static void __exit parport_ax88796_exit(void) -{ - platform_driver_unregister(&axdrv); -} - -module_init(parport_ax88796_init) -module_exit(parport_ax88796_exit) +module_platform_driver(axdrv); MODULE_AUTHOR("Ben Dooks <ben@xxxxxxxxxxxx>"); MODULE_DESCRIPTION("AX88796 Parport parallel port driver"); diff -puN drivers/parport/parport_sunbpp.c~parport-convert-drivers-parport-to-use-module_platform_driver drivers/parport/parport_sunbpp.c --- a/drivers/parport/parport_sunbpp.c~parport-convert-drivers-parport-to-use-module_platform_driver +++ a/drivers/parport/parport_sunbpp.c @@ -391,21 +391,10 @@ static struct platform_driver bpp_sbus_d .remove = __devexit_p(bpp_remove), }; -static int __init parport_sunbpp_init(void) -{ - return platform_driver_register(&bpp_sbus_driver); -} - -static void __exit parport_sunbpp_exit(void) -{ - platform_driver_unregister(&bpp_sbus_driver); -} +module_platform_driver(bpp_sbus_driver); MODULE_AUTHOR("Derrick J Brashear"); MODULE_DESCRIPTION("Parport Driver for Sparc bidirectional Port"); MODULE_SUPPORTED_DEVICE("Sparc Bidirectional Parallel Port"); MODULE_VERSION("2.0"); MODULE_LICENSE("GPL"); - -module_init(parport_sunbpp_init) -module_exit(parport_sunbpp_exit) _ Patches currently in -mm which might be from axel.lin@xxxxxxxxx are origin.patch linux-next.patch sbus-convert-drivers-sbus-char-to-use-module_platform_driver.patch backlight-convert-drivers-video-backlight-to-use-module_platform_driver.patch leds-convert-led-platform-drivers-to-module_platform_driver.patch leds-convert-led-i2c-drivers-to-module_i2c_driver.patch leds-convert-leds-dac124s085-to-module_spi_driver.patch drivers-leds-leds-lp5523c-remove-unneeded-forward-declaration.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