|
@@ -29,6 +29,7 @@
|
|
|
#include <linux/errno.h>
|
|
|
#include <linux/interrupt.h>
|
|
|
#include <linux/i2c-pxa.h>
|
|
|
+#include <linux/of_i2c.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/err.h>
|
|
|
#include <linux/clk.h>
|
|
@@ -1138,6 +1139,9 @@ static int i2c_pxa_probe(struct platform_device *dev)
|
|
|
|
|
|
i2c->adap.algo_data = i2c;
|
|
|
i2c->adap.dev.parent = &dev->dev;
|
|
|
+#ifdef CONFIG_OF
|
|
|
+ i2c->adap.dev.of_node = dev->dev.of_node;
|
|
|
+#endif
|
|
|
|
|
|
if (i2c_type == REGS_CE4100)
|
|
|
ret = i2c_add_adapter(&i2c->adap);
|
|
@@ -1147,6 +1151,7 @@ static int i2c_pxa_probe(struct platform_device *dev)
|
|
|
printk(KERN_INFO "I2C: Failed to add bus\n");
|
|
|
goto eadapt;
|
|
|
}
|
|
|
+ of_i2c_register_devices(&i2c->adap);
|
|
|
|
|
|
platform_set_drvdata(dev, i2c);
|
|
|
|