Skip to content

Commit

Permalink
i2c-pxa: Fix adapter number
Browse files Browse the repository at this point in the history
It turns out that platform_device.id is a "u32" so testing it for being
nonnegative is useless when setting up an i2c adapte.  Instead,
do what the platform_bus code does and test it against the value "-1".

Signed-off-by: Jean Delvare <khali@linux-fr.org>
  • Loading branch information
Jean Delvare authored and Jean Delvare committed Sep 9, 2007
1 parent 9a3180e commit 51e5709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/i2c/busses/i2c-pxa.c
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ static int i2c_pxa_probe(struct platform_device *dev)
* The reason to do so is to avoid sysfs names that only make
* sense when there are multiple adapters.
*/
i2c->adap.nr = dev->id >= 0 ? dev->id : 0;
i2c->adap.nr = dev->id != -1 ? dev->id : 0;

ret = i2c_add_numbered_adapter(&i2c->adap);
if (ret < 0) {
Expand Down

0 comments on commit 51e5709

Please sign in to comment.