module_platform_driver removes some boilerplate code and makes it simple. Signed-off-by: Sachin Kamat <sachin.kamat@xxxxxxxxxx> Cc: Kristoffer Glembo <kristoffer@xxxxxxxxxxx> --- drivers/video/grvga.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/drivers/video/grvga.c b/drivers/video/grvga.c index 01fbcaf..c078701 100644 --- a/drivers/video/grvga.c +++ b/drivers/video/grvga.c @@ -555,19 +555,7 @@ static struct platform_driver grvga_driver = { .remove = grvga_remove, }; - -static int __init grvga_init(void) -{ - return platform_driver_register(&grvga_driver); -} - -static void __exit grvga_exit(void) -{ - platform_driver_unregister(&grvga_driver); -} - -module_init(grvga_init); -module_exit(grvga_exit); +module_platform_driver(grvga_driver); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Aeroflex Gaisler"); -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html