diff options
author | Florian Meier <[email protected]> | 2013-11-25 09:01:50 +0100 |
---|---|---|
committer | Wolfram Sang <[email protected]> | 2013-11-28 09:47:53 +0100 |
commit | 07a27a0047274e0ba568ce86b6416c34497a99a7 (patch) | |
tree | 332473f71ffb1a15317645bccb26cd6d756d0a9d | |
parent | 40b13ca8dcac6227109d9df1232787d2ba98052e (diff) |
i2c: bcm2835: Linking platform nodes to adapter nodes
In order to find I2C devices in the device tree, the platform nodes
have to be known by the I2C core. This requires setting the
dev.of_node parameter of the adapter.
Signed-off-by: Florian Meier <[email protected]>
Tested-by: Stephen Warren <[email protected]>
Signed-off-by: Wolfram Sang <[email protected]>
-rw-r--r-- | drivers/i2c/busses/i2c-bcm2835.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-bcm2835.c b/drivers/i2c/busses/i2c-bcm2835.c index d7e8600f31fb..77df97b932af 100644 --- a/drivers/i2c/busses/i2c-bcm2835.c +++ b/drivers/i2c/busses/i2c-bcm2835.c @@ -299,6 +299,7 @@ static int bcm2835_i2c_probe(struct platform_device *pdev) strlcpy(adap->name, "bcm2835 I2C adapter", sizeof(adap->name)); adap->algo = &bcm2835_i2c_algo; adap->dev.parent = &pdev->dev; + adap->dev.of_node = pdev->dev.of_node; bcm2835_i2c_writel(i2c_dev, BCM2835_I2C_C, 0); |