From: Philipp Zabel Date: Wed, 5 Mar 2014 09:20:56 +0000 (+0100) Subject: imx-drm: imx-hdmi: Fix DDC I2C bus property X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b5d4590136cbff3f3fa74348337db31443377a1f;p=deliverable%2Flinux.git imx-drm: imx-hdmi: Fix DDC I2C bus property This patch fixes the DDC I2C bus property to use the common 'ddc-i2c-bus' property name instead of 'ddc'. This is already documented in Documentation/devicetree/bindings/staging/imx-drm/hdmi.txt Signed-off-by: Philipp Zabel Signed-off-by: Russell King --- diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c index 070f0161a12a..5ef998de0acc 100644 --- a/drivers/staging/imx-drm/imx-hdmi.c +++ b/drivers/staging/imx-drm/imx-hdmi.c @@ -1605,7 +1605,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data) hdmi->dev_type = device_id->driver_data; } - ddc_node = of_parse_phandle(np, "ddc", 0); + ddc_node = of_parse_phandle(np, "ddc-i2c-bus", 0); if (ddc_node) { hdmi->ddc = of_find_i2c_adapter_by_node(ddc_node); if (!hdmi->ddc)