Skip to content

Commit

Permalink
powerpc/windfarm: Use module_i2c_driver to simplify the code
Browse files Browse the repository at this point in the history
Use the module_i2c_driver() macro to make the code smaller
and a bit simpler.

dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  • Loading branch information
Wei Yongjun authored and Benjamin Herrenschmidt committed Nov 15, 2012
1 parent 0dc3289 commit f7fb862
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 50 deletions.
14 changes: 1 addition & 13 deletions drivers/macintosh/windfarm_fcu_controls.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,19 +593,7 @@ static struct i2c_driver wf_fcu_driver = {
.id_table = wf_fcu_id,
};

static int __init wf_fcu_init(void)
{
return i2c_add_driver(&wf_fcu_driver);
}

static void __exit wf_fcu_exit(void)
{
i2c_del_driver(&wf_fcu_driver);
}


module_init(wf_fcu_init);
module_exit(wf_fcu_exit);
module_i2c_driver(wf_fcu_driver);

MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
MODULE_DESCRIPTION("FCU control objects for PowerMacs thermal control");
Expand Down
14 changes: 1 addition & 13 deletions drivers/macintosh/windfarm_lm75_sensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,19 +174,7 @@ static struct i2c_driver wf_lm75_driver = {
.id_table = wf_lm75_id,
};

static int __init wf_lm75_sensor_init(void)
{
return i2c_add_driver(&wf_lm75_driver);
}

static void __exit wf_lm75_sensor_exit(void)
{
i2c_del_driver(&wf_lm75_driver);
}


module_init(wf_lm75_sensor_init);
module_exit(wf_lm75_sensor_exit);
module_i2c_driver(wf_lm75_driver);

MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
MODULE_DESCRIPTION("LM75 sensor objects for PowerMacs thermal control");
Expand Down
13 changes: 1 addition & 12 deletions drivers/macintosh/windfarm_max6690_sensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,18 +130,7 @@ static struct i2c_driver wf_max6690_driver = {
.id_table = wf_max6690_id,
};

static int __init wf_max6690_sensor_init(void)
{
return i2c_add_driver(&wf_max6690_driver);
}

static void __exit wf_max6690_sensor_exit(void)
{
i2c_del_driver(&wf_max6690_driver);
}

module_init(wf_max6690_sensor_init);
module_exit(wf_max6690_sensor_exit);
module_i2c_driver(wf_max6690_driver);

MODULE_AUTHOR("Paul Mackerras <paulus@samba.org>");
MODULE_DESCRIPTION("MAX6690 sensor objects for PowerMac thermal control");
Expand Down
13 changes: 1 addition & 12 deletions drivers/macintosh/windfarm_smu_sat.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,18 +364,7 @@ static struct i2c_driver wf_sat_driver = {
.id_table = wf_sat_id,
};

static int __init sat_sensors_init(void)
{
return i2c_add_driver(&wf_sat_driver);
}

static void __exit sat_sensors_exit(void)
{
i2c_del_driver(&wf_sat_driver);
}

module_init(sat_sensors_init);
module_exit(sat_sensors_exit);
module_i2c_driver(wf_sat_driver);

MODULE_AUTHOR("Paul Mackerras <paulus@samba.org>");
MODULE_DESCRIPTION("SMU satellite sensors for PowerMac thermal control");
Expand Down

0 comments on commit f7fb862

Please sign in to comment.