Skip to content

Commit

Permalink
i2c: Convert drivers/i2c/muxes/* to use module_i2c_driver()
Browse files Browse the repository at this point in the history
This patch converts the drivers in drivers/i2c/muxes/* to use the
module_i2c_driver() macro which makes the code smaller and a bit simpler.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Cc: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Michael Lawnick <ml.lawnick@gmx.de>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
  • Loading branch information
Axel Lin authored and Jean Delvare committed Mar 26, 2012
1 parent 84c1af4 commit de05497
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
13 changes: 1 addition & 12 deletions drivers/i2c/muxes/pca9541.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,18 +393,7 @@ static struct i2c_driver pca9541_driver = {
.id_table = pca9541_id,
};

static int __init pca9541_init(void)
{
return i2c_add_driver(&pca9541_driver);
}

static void __exit pca9541_exit(void)
{
i2c_del_driver(&pca9541_driver);
}

module_init(pca9541_init);
module_exit(pca9541_exit);
module_i2c_driver(pca9541_driver);

MODULE_AUTHOR("Guenter Roeck <guenter.roeck@ericsson.com>");
MODULE_DESCRIPTION("PCA9541 I2C master selector driver");
Expand Down
13 changes: 1 addition & 12 deletions drivers/i2c/muxes/pca954x.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,18 +284,7 @@ static struct i2c_driver pca954x_driver = {
.id_table = pca954x_id,
};

static int __init pca954x_init(void)
{
return i2c_add_driver(&pca954x_driver);
}

static void __exit pca954x_exit(void)
{
i2c_del_driver(&pca954x_driver);
}

module_init(pca954x_init);
module_exit(pca954x_exit);
module_i2c_driver(pca954x_driver);

MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
Expand Down

0 comments on commit de05497

Please sign in to comment.