MLK-18904-7: imx: hdp: Changing Reset function
authorOliver Brown <oliver.brown@nxp.com>
Mon, 16 Jul 2018 13:59:41 +0000 (08:59 -0500)
committerLeonard Crestez <leonard.crestez@nxp.com>
Wed, 17 Apr 2019 23:51:34 +0000 (02:51 +0300)
Reset function parameters are changing to support i.MX8M (MCU2).

Signed-off-by: Oliver Brown <oliver.brown@nxp.com>
drivers/gpu/drm/imx/hdp/imx-hdmi.c

index 514937a..b4b0b29 100644 (file)
@@ -160,7 +160,7 @@ int hdmi_phy_init_ss28fdsoi(state_struct *state, struct drm_display_mode *mode,
        int ret;
 
        /* reset phy */
-       imx_hdp_call(hdp, phy_reset, hdp->ipcHndl, 0);
+       imx_hdp_call(hdp, phy_reset, hdp->ipcHndl, NULL, 0);
 
        /* Configure PHY */
        character_freq_khz = phy_cfg_hdp_ss28fdsoi(state, 4, mode, color_depth, format);
@@ -169,7 +169,7 @@ int hdmi_phy_init_ss28fdsoi(state_struct *state, struct drm_display_mode *mode,
                return -EINVAL;
        }
 
-       imx_hdp_call(hdp, phy_reset, hdp->ipcHndl, 1);
+       imx_hdp_call(hdp, phy_reset, hdp->ipcHndl, NULL, 1);
 
        hdmi_tx_kiran_power_configuration_seq(state, 4);