i2c/busses: Use module_platform_driver()
Convert the drivers in drivers/i2c/busses/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: Ben Dooks <ben-linux@fluff.org> Acked-by: Jochen Friedrich <jochen@scram.de> Acked-by: Peter Korsgaard <jacmet@sunsite.dk> Acked-by: Wolfram Sang <w.sang@pengutronix.de> Cc: Manuel Lauss <manuel.lauss@googlemail.com> Cc: Barry Song <21cnbao@gmail.com> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Yong Zhang <yong.zhang0@gmail.com> Cc: Lucas De Marchi <lucas.demarchi@profusion.mobi> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
@@ -468,18 +468,7 @@ static struct platform_driver highlander_i2c_driver = {
|
||||
.remove = __devexit_p(highlander_i2c_remove),
|
||||
};
|
||||
|
||||
static int __init highlander_i2c_init(void)
|
||||
{
|
||||
return platform_driver_register(&highlander_i2c_driver);
|
||||
}
|
||||
|
||||
static void __exit highlander_i2c_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&highlander_i2c_driver);
|
||||
}
|
||||
|
||||
module_init(highlander_i2c_init);
|
||||
module_exit(highlander_i2c_exit);
|
||||
module_platform_driver(highlander_i2c_driver);
|
||||
|
||||
MODULE_AUTHOR("Paul Mundt");
|
||||
MODULE_DESCRIPTION("Renesas Highlander FPGA I2C/SMBus adapter");
|
||||
|
Reference in New Issue
Block a user