From: Srinivas Kandagatla <srinivas.kandagatla@xxxxxx> Running below Coccinelle lookup pattern like below on the latest kernel showed about 52 hits. This patch series is a subset of those 52 patches, so that it will be easy for maintainers to review. Hopefully these patches will get rid of some code duplication in kernel. @ @ - initfunc(void) - { return platform_driver_register(&dr); } ... - module_init(initfunc); ... - exitfunc(void) - { platform_driver_unregister(&dr); } ... - module_exit(exitfunc); + module_platform_driver(dr); Srinivas Kandagatla (2): ide/au1xxx: use module_platform_driver macro ide_platform: use module_platform_driver macro drivers/ide/au1xxx-ide.c | 14 +------------- drivers/ide/ide_platform.c | 14 +------------- 2 files changed, 2 insertions(+), 26 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html