Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 16691
b: refs/heads/master
c: a33ca23
h: refs/heads/master
i:
  16689: 1280ae2
  16687: 57d1d9c
v: v3
  • Loading branch information
Laurent Riffard authored and Greg Kroah-Hartman committed Jan 6, 2006
1 parent 36dd2c6 commit c7f4629
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cdaf79349c7d24e1d33acb6497849c9e956a33ea
refs/heads/master: a33ca23231a37e28d15da9546b1f3e83dc48284b
6 changes: 4 additions & 2 deletions trunk/drivers/macintosh/therm_adt746x.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,10 @@ detach_thermostat(struct i2c_adapter *adapter)
}

static struct i2c_driver thermostat_driver = {
.owner = THIS_MODULE,
.name = "therm_adt746x",
.driver = {
.owner = THIS_MODULE,
.name = "therm_adt746x",
},
.attach_adapter = attach_thermostat,
.detach_adapter = detach_thermostat,
};
Expand Down
6 changes: 4 additions & 2 deletions trunk/drivers/macintosh/therm_pm72.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,10 @@ static int therm_pm72_detach(struct i2c_adapter *adapter);

static struct i2c_driver therm_pm72_driver =
{
.owner = THIS_MODULE,
.name = "therm_pm72",
.driver = {
.owner = THIS_MODULE,
.name = "therm_pm72",
},
.attach_adapter = therm_pm72_attach,
.detach_adapter = therm_pm72_detach,
};
Expand Down
6 changes: 4 additions & 2 deletions trunk/drivers/macintosh/therm_windtunnel.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,10 @@ do_detach( struct i2c_client *client )
}

static struct i2c_driver g4fan_driver = {
.owner = THIS_MODULE,
.name = "therm_windtunnel",
.driver = {
.owner = THIS_MODULE,
.name = "therm_windtunnel",
},
.id = I2C_DRIVERID_G4FAN,
.attach_adapter = do_attach,
.detach_client = do_detach,
Expand Down
6 changes: 4 additions & 2 deletions trunk/drivers/macintosh/windfarm_lm75_sensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ static int wf_lm75_attach(struct i2c_adapter *adapter);
static int wf_lm75_detach(struct i2c_client *client);

static struct i2c_driver wf_lm75_driver = {
.owner = THIS_MODULE,
.name = "wf_lm75",
.driver = {
.owner = THIS_MODULE,
.name = "wf_lm75",
},
.attach_adapter = wf_lm75_attach,
.detach_client = wf_lm75_detach,
};
Expand Down

0 comments on commit c7f4629

Please sign in to comment.