]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ENGR00221854 HDMI: suspend/resume hdmi_phy fail to lock.
authorSandor Yu <R01008@freescale.com>
Wed, 5 Sep 2012 03:17:32 +0000 (11:17 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 24 May 2013 06:35:22 +0000 (08:35 +0200)
HDMI PHY init function will been called four times during system resume.
The first call before pixel clock enable, so it will print
PHY PLL unlock message, but the PHY PLL will locked in the next
three times called. It will not affect HDMI PHY function.

Change message print function dev_err to dev_dbg.

Signed-off-by: Sandor Yu <R01008@freescale.com>
drivers/video/mxc_hdmi.c

index 1832a5998d2d23efc35d79d106d8a817d9d89dbd..e9c05477a055afb511b99b43ae0826f386e7b602 100644 (file)
@@ -1070,7 +1070,7 @@ static int hdmi_phy_configure(struct mxc_hdmi *hdmi, unsigned char pRep,
        while (val == 0) {
                udelay(1000);
                if (msec-- == 0) {
-                       dev_err(&hdmi->pdev->dev, "PHY PLL not locked\n");
+                       dev_dbg(&hdmi->pdev->dev, "PHY PLL not locked\n");
                        return false;
                }
                val = hdmi_readb(HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;