Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215608
b: refs/heads/master
c: db79f2a
h: refs/heads/master
v: v3
  • Loading branch information
Guenter Roeck authored and Jean Delvare committed Oct 24, 2010
1 parent 8e4adea commit 300a385
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 5ce914a8965031a4de503235eb9e0d33ff294fa8
refs/heads/master: db79f2a1d259a9026241dd0f192c20d6264d5afa
8 changes: 4 additions & 4 deletions trunk/drivers/i2c/muxes/pca954x.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ static int pca954x_deselect_mux(struct i2c_adapter *adap,
/*
* I2C init/probing/exit functions
*/
static int __devinit pca954x_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int pca954x_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent);
struct pca954x_platform_data *pdata = client->dev.platform_data;
Expand Down Expand Up @@ -255,7 +255,7 @@ static int __devinit pca954x_probe(struct i2c_client *client,
return ret;
}

static int __devexit pca954x_remove(struct i2c_client *client)
static int pca954x_remove(struct i2c_client *client)
{
struct pca954x *data = i2c_get_clientdata(client);
const struct chip_desc *chip = &chips[data->type];
Expand All @@ -279,7 +279,7 @@ static struct i2c_driver pca954x_driver = {
.owner = THIS_MODULE,
},
.probe = pca954x_probe,
.remove = __devexit_p(pca954x_remove),
.remove = pca954x_remove,
.id_table = pca954x_id,
};

Expand Down

0 comments on commit 300a385

Please sign in to comment.