diff options
author | Jean Delvare <khali@linux-fr.org> | 2006-11-23 07:28:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-11-23 12:27:49 -0500 |
commit | 0b1082efb92eedb28e982cfae526267ebdcf5622 (patch) | |
tree | 244c58a3cc62ba0019c0a04f557dd6e3b6d337cf | |
parent | 0916bd3ebb7cefdd0f432e8491abe24f4b5a101e (diff) |
[PATCH] Fix i2c-ixp4xx compile (missing brace)
Fix recent i2c-ixp4xx compilation breakage. Sorry for overlooking it.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/i2c/busses/i2c-ixp4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-ixp4xx.c b/drivers/i2c/busses/i2c-ixp4xx.c index 05fffb9415a2..68fe863f9d54 100644 --- a/drivers/i2c/busses/i2c-ixp4xx.c +++ b/drivers/i2c/busses/i2c-ixp4xx.c | |||
@@ -138,7 +138,7 @@ static int ixp4xx_i2c_probe(struct platform_device *plat_dev) | |||
138 | gpio_line_set(gpio->sda_pin, 0); | 138 | gpio_line_set(gpio->sda_pin, 0); |
139 | 139 | ||
140 | err = i2c_bit_add_bus(&drv_data->adapter); | 140 | err = i2c_bit_add_bus(&drv_data->adapter); |
141 | if (err != 0) | 141 | if (err) { |
142 | printk(KERN_ERR "ERROR: Could not install %s\n", plat_dev->dev.bus_id); | 142 | printk(KERN_ERR "ERROR: Could not install %s\n", plat_dev->dev.bus_id); |
143 | 143 | ||
144 | kfree(drv_data); | 144 | kfree(drv_data); |