i2c-gpio: Fix adapter number

It turns out that platform_device.id is a "u32" so testing it for being
nonnegative is useless when setting up an i2c bitbang device. Instead,
do what the platform_bus code does and test it against the value "-1".

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Acked-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by David Brownell and committed by Jean Delvare 9a3180e7 b21010ed

+1 -1
+1 -1
drivers/i2c/busses/i2c-gpio.c
··· 147 147 * The reason to do so is to avoid sysfs names that only make 148 148 * sense when there are multiple adapters. 149 149 */ 150 - adap->nr = pdev->id >= 0 ? pdev->id : 0; 150 + adap->nr = (pdev->id != -1) ? pdev->id : 0; 151 151 ret = i2c_bit_add_numbered_bus(adap); 152 152 if (ret) 153 153 goto err_add_bus;