Skip to content

Commit

Permalink
i2c-powermac: Fix section for probe and remove functions
Browse files Browse the repository at this point in the history
__devexit for i2c_powermac_probe is obviously wrong.  In the definition
of struct platform_driver i2c_powermac_driver the remove function
i2c_powermac_remove is wrapped in __devexit_p, so it should be defined
using __devexit.

Signed-off-by: Uwe Kleine-Koenig <ukleinek@informatik.uni-freiburg.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
  • Loading branch information
Uwe Kleine-Koenig authored and Jean Delvare committed Sep 24, 2008
1 parent fb478da commit 4ebb52d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/i2c/busses/i2c-powermac.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ static const struct i2c_algorithm i2c_powermac_algorithm = {
};


static int i2c_powermac_remove(struct platform_device *dev)
static int __devexit i2c_powermac_remove(struct platform_device *dev)
{
struct i2c_adapter *adapter = platform_get_drvdata(dev);
struct pmac_i2c_bus *bus = i2c_get_adapdata(adapter);
Expand All @@ -200,7 +200,7 @@ static int i2c_powermac_remove(struct platform_device *dev)
}


static int __devexit i2c_powermac_probe(struct platform_device *dev)
static int __devinit i2c_powermac_probe(struct platform_device *dev)
{
struct pmac_i2c_bus *bus = dev->dev.platform_data;
struct device_node *parent = NULL;
Expand Down

0 comments on commit 4ebb52d

Please sign in to comment.