All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c-gpio: Add support for new-style clients
@ 2007-06-12 15:43 Atsushi Nemoto
  2007-06-13 11:15 ` Haavard Skinnemoen
  2007-06-14  6:24 ` Jean Delvare
  0 siblings, 2 replies; 5+ messages in thread
From: Atsushi Nemoto @ 2007-06-12 15:43 UTC (permalink / raw)
  To: Haavard Skinnemoen; +Cc: linux-kernel, i2c, khali

Use i2c_bit_add_numbered_bus() if device id specified, so that the
i2c-gpio adapter works well with new-style pre-declared devices.

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
---
diff --git a/drivers/i2c/busses/i2c-gpio.c b/drivers/i2c/busses/i2c-gpio.c
index a7dd546..8a62c26 100644
--- a/drivers/i2c/busses/i2c-gpio.c
+++ b/drivers/i2c/busses/i2c-gpio.c
@@ -142,7 +142,10 @@ static int __init i2c_gpio_probe(struct platform_device *pdev)
 	adap->algo_data = bit_data;
 	adap->dev.parent = &pdev->dev;
 
-	ret = i2c_bit_add_bus(adap);
+	if (pdev->id == -1)
+		ret = i2c_bit_add_bus(adap);
+	else
+		ret = i2c_bit_add_numbered_bus(adap);
 	if (ret)
 		goto err_add_bus;
 

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-06-15 15:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-12 15:43 [PATCH] i2c-gpio: Add support for new-style clients Atsushi Nemoto
2007-06-13 11:15 ` Haavard Skinnemoen
2007-06-14  6:24 ` Jean Delvare
2007-06-14  6:40   ` Atsushi Nemoto
2007-06-15 15:59     ` Jean Delvare

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.