target: msm8226: fix calls to send panel rotation commands

Commit fec354c4304c1a19e8a550cb02dcec00b102ca5d (platform: msm_shared:
add support to specify any DSI intf as primary) modified the
implementation of the function to send panel DCS commands. This requires
updating the calls to send the panel rotation commands to address
compilation issues.

Change-Id: Iacc2d328fa013cb2ca387eb5195f180cf3ed767b
diff --git a/target/msm8226/oem_panel.c b/target/msm8226/oem_panel.c
index 11259f5..354c08e 100755
--- a/target/msm8226/oem_panel.c
+++ b/target/msm8226/oem_panel.c
@@ -95,15 +95,15 @@
 	int ret = NO_ERROR;
 	switch (panel_id) {
 	case TOSHIBA_720P_VIDEO_PANEL:
-		ret = mdss_dsi_cmds_tx(toshiba_720p_video_rotation,
+		ret = mdss_dsi_cmds_tx(NULL, toshiba_720p_video_rotation,
 			TOSHIBA_720P_VIDEO_ROTATION, 0);
 		break;
 	case NT35590_720P_CMD_PANEL:
-		ret = mdss_dsi_cmds_tx(nt35590_720p_cmd_rotation,
+		ret = mdss_dsi_cmds_tx(NULL, nt35590_720p_cmd_rotation,
 			NT35590_720P_CMD_ROTATION, 0);
 		break;
 	case NT35590_720P_VIDEO_PANEL:
-		ret = mdss_dsi_cmds_tx(nt35590_720p_video_rotation,
+		ret = mdss_dsi_cmds_tx(NULL, nt35590_720p_video_rotation,
 			NT35590_720P_VIDEO_ROTATION, 0);
 		break;
 	}