diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-09 10:01:15 +0800 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-12-19 20:21:43 +0000 |
commit | 00f1f199eaab5589aed653dec953dd57d6c9bcda (patch) | |
tree | da771278615cec99dfe447bce96a774f68d91f02 /drivers/video/pnx4008/pnxrgbfb.c | |
parent | 70f6255a488f62a8f054907479b0eb6615b9bcb5 (diff) | |
download | op-kernel-dev-00f1f199eaab5589aed653dec953dd57d6c9bcda.zip op-kernel-dev-00f1f199eaab5589aed653dec953dd57d6c9bcda.tar.gz |
video: pnx4008: convert drivers/video/pnx4008/* to use module_platform_driver()
This patch converts the drivers in drivers/video/pnx4008/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.
Cc: Grigory Tolstolytkin <gtolstolytkin@ru.mvista.com>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/pnx4008/pnxrgbfb.c')
-rw-r--r-- | drivers/video/pnx4008/pnxrgbfb.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/video/pnx4008/pnxrgbfb.c b/drivers/video/pnx4008/pnxrgbfb.c index b2252fe..6d30428 100644 --- a/drivers/video/pnx4008/pnxrgbfb.c +++ b/drivers/video/pnx4008/pnxrgbfb.c @@ -193,17 +193,6 @@ static struct platform_driver rgbfb_driver = { .remove = rgbfb_remove, }; -static int __init rgbfb_init(void) -{ - return platform_driver_register(&rgbfb_driver); -} - -static void __exit rgbfb_exit(void) -{ - platform_driver_unregister(&rgbfb_driver); -} - -module_init(rgbfb_init); -module_exit(rgbfb_exit); +module_platform_driver(rgbfb_driver); MODULE_LICENSE("GPL"); |