summaryrefslogtreecommitdiff
path: root/drivers/video
diff options
context:
space:
mode:
authorSandor Yu <R01008@freescale.com>2013-08-07 19:18:11 +0800
committerJason Liu <r64343@freescale.com>2013-10-30 09:54:35 +0800
commite68ab3f558db114e2551071f9141961e78d8cec4 (patch)
treea5b21e1ee6cd0ae2a7eb872febf73e0c6681d643 /drivers/video
parent6fc8e3aa1f90196417005b264e8616d04971c0ce (diff)
ENGR00274226-02 MX6 HDMI: Add prefix "fsl" to mxc specific dts properties.
- Add prefix "fsl" to mxc specific dts properties. - imx_hdmi_type will been referenced by app move it to mxc_hdmi.h. Signed-off-by: Sandor Yu <R01008@freescale.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/mxc/mxc_hdmi.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/video/mxc/mxc_hdmi.c b/drivers/video/mxc/mxc_hdmi.c
index 6c0d422d669a..78404642b719 100644
--- a/drivers/video/mxc/mxc_hdmi.c
+++ b/drivers/video/mxc/mxc_hdmi.c
@@ -202,11 +202,6 @@ struct mxc_hdmi {
struct pinctrl_state *pins_cec;
};
-enum imx_hdmim_type {
- IMX6DL_HDMI,
- IMX6Q_HDMI,
-};
-
static int hdmi_major;
static struct class *hdmi_class;
@@ -2484,11 +2479,11 @@ static void hdmi_get_of_property(struct mxc_hdmi *hdmi)
* Default value will been setting in HDMI PHY config function
* if it is not define in device tree.
*/
- ret = of_property_read_u32(np, "phy_reg_vlev", &phy_reg_vlev);
+ ret = of_property_read_u32(np, "fsl,phy_reg_vlev", &phy_reg_vlev);
if (ret)
dev_dbg(&pdev->dev, "No board specific HDMI PHY vlev\n");
- ret = of_property_read_u32(np, "phy_reg_cksymtx", &phy_reg_cksymtx);
+ ret = of_property_read_u32(np, "fsl,phy_reg_cksymtx", &phy_reg_cksymtx);
if (ret)
dev_dbg(&pdev->dev, "No board specific HDMI PHY cksymtx\n");