Skip to content

Commit

Permalink
i2c-puv3: using module_platform_driver()
Browse files Browse the repository at this point in the history
This patch converts the driver to use the module_platform_driver()
macro which makes the code smaller and a bit simpler.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
  • Loading branch information
Guan Xuetao committed Jan 10, 2012
1 parent a9196b0 commit 858af58
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions drivers/i2c/busses/i2c-puv3.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,6 @@ static int puv3_i2c_resume(struct platform_device *dev)
#define puv3_i2c_resume NULL
#endif

MODULE_ALIAS("platform:puv3_i2c");

static struct platform_driver puv3_i2c_driver = {
.probe = puv3_i2c_probe,
.remove = __devexit_p(puv3_i2c_remove),
Expand All @@ -289,18 +287,8 @@ static struct platform_driver puv3_i2c_driver = {
}
};

static int __init puv3_i2c_init(void)
{
return platform_driver_register(&puv3_i2c_driver);
}

static void __exit puv3_i2c_exit(void)
{
platform_driver_unregister(&puv3_i2c_driver);
}

module_init(puv3_i2c_init);
module_exit(puv3_i2c_exit);
module_platform_driver(puv3_i2c_driver);

MODULE_DESCRIPTION("PKUnity v3 I2C driver");
MODULE_LICENSE("GPL v2");
MODULE_ALIAS("platform:puv3_i2c");

0 comments on commit 858af58

Please sign in to comment.