|
@@ -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
|
|
* The reason to do so is to avoid sysfs names that only make
|
|
* sense when there are multiple adapters.
|
|
* 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);
|
|
ret = i2c_add_numbered_adapter(&i2c->adap);
|
|
if (ret < 0) {
|
|
if (ret < 0) {
|