@@ -42,14 +42,19 @@ int dviInit(
unsigned char pllFilterValue
)
{
+#ifdef DVI_CTRL_SII164
dvi_ctrl_device_t *pCurrentDviCtrl;
pCurrentDviCtrl = g_dcftSupportedDviController;
- if (pCurrentDviCtrl->pfnInit) {
- return pCurrentDviCtrl->pfnInit(edgeSelect, busSelect, dualEdgeClkSelect, hsyncEnable,
- vsyncEnable, deskewEnable, deskewSetting, continuousSyncEnable,
- pllFilterEnable, pllFilterValue);
- }
+
+ return pCurrentDviCtrl->pfnInit(
+ edgeSelect, busSelect, dualEdgeClkSelect,
+ hsyncEnable, vsyncEnable, deskewEnable,
+ deskewSetting, continuousSyncEnable,
+ pllFilterEnable, pllFilterValue
+ );
+#endif
+
return -1; /* error */
}
coordinate conditional compilation with g_dcftSupportedDviController[] fix exceed-80-characters issue Signed-off-by: Lynn Lei <lynnl.wit@gmail.com> --- drivers/staging/sm750fb/ddk750_dvi.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-)