aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses/i2c-i801.c
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@avionic-design.de>2012-12-16 21:11:54 +0100
committerJean Delvare <khali@endymion.delvare>2012-12-16 21:11:54 +0100
commitf6afc8b158951cf2c8492e10e4ee70abc7b213f3 (patch)
treec8202139e2295540fa31a779022fe84e3fee5979 /drivers/i2c/busses/i2c-i801.c
parentMAINTAINERS: Fix drivers/i2c/busses/i2c-stub.c (diff)
downloadlinux-dev-f6afc8b158951cf2c8492e10e4ee70abc7b213f3.tar.xz
linux-dev-f6afc8b158951cf2c8492e10e4ee70abc7b213f3.zip
i2c-i801: Add device tree support
Add support for probing slave devices parsed from the device tree. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Acked-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to '')
-rw-r--r--drivers/i2c/busses/i2c-i801.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index 6abc00d59881..e80eafc48e78 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -81,6 +81,7 @@
#include <linux/slab.h>
#include <linux/wait.h>
#include <linux/err.h>
+#include <linux/of_i2c.h>
#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
defined CONFIG_DMI
@@ -1215,6 +1216,7 @@ static int __devinit i801_probe(struct pci_dev *dev,
goto exit_free_irq;
}
+ of_i2c_register_devices(&priv->adapter);
i801_probe_optional_slaves(priv);
/* We ignore errors - multiplexing is optional */
i801_add_mux(priv);