dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] i2c: Fix 'ignore' module parameter handling in i2c-core

This patch fixes a bug in the handling of 'ignore' module parameters of I2C
client drivers.

Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Mark M. Hoffman 2006-07-01 17:01:59 +02:00 committed by Greg Kroah-Hartman
parent 155dbfd884
commit 2369df933f
1 changed files with 2 additions and 2 deletions

View File

@ -756,9 +756,9 @@ int i2c_probe(struct i2c_adapter *adapter,
"parameter for adapter %d, "
"addr 0x%02x\n", adap_id,
address_data->ignore[j + 1]);
ignore = 1;
break;
}
ignore = 1;
break;
}
if (ignore)
continue;