[PATCH] More i2c driver fixes for 2.6.0-test5

From: Greg KH
Date: Thu Sep 25 2003 - 16:57:35 EST


ChangeSet 1.1325.4.1, 2003/09/23 13:54:31-07:00, greg@xxxxxxxxx

[PATCH] I2C: remove the isa address check alltogether.


drivers/i2c/i2c-sensor.c | 5 +----
1 files changed, 1 insertion(+), 4 deletions(-)


diff -Nru a/drivers/i2c/i2c-sensor.c b/drivers/i2c/i2c-sensor.c
--- a/drivers/i2c/i2c-sensor.c Thu Sep 25 14:50:07 2003
+++ b/drivers/i2c/i2c-sensor.c Thu Sep 25 14:50:07 2003
@@ -50,10 +50,7 @@
return -1;

for (addr = 0x00; addr <= (is_isa ? 0xffff : 0x7f); addr++) {
- void *region_used = request_region(addr, 1, "foo");
- release_region(addr, 1);
- if ((is_isa && (region_used == NULL)) ||
- (!is_isa && i2c_check_addr(adapter, addr)))
+ if (!is_isa && i2c_check_addr(adapter, addr))
continue;

/* If it is in one of the force entries, we don't do any

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/