platform: msm-shared: Change in the debug msg

Debug messages has an incorrect identifier,hence
replacing it with the respective function names.

Change-Id: Ia2fbc189c90a5981fde5ba6c2cd0f97ded6a089a
diff --git a/platform/msm_shared/boot_verifier.c b/platform/msm_shared/boot_verifier.c
index 2f5e2ff..ced0fac 100644
--- a/platform/msm_shared/boot_verifier.c
+++ b/platform/msm_shared/boot_verifier.c
@@ -586,12 +586,12 @@
 			}
 			ret = set_tamper_fuse_cmd(HLOS_TAMPER_NOTIFY_FUSE);
 			if (ret) {
-				dprintf(CRITICAL, "QCOM_VB_SendROT: set_tamper_fuse_cmd (TZ_HLOS_TAMPER_NOTIFY_FUSE) fails!\n");
+				dprintf(CRITICAL, "send_rot_command: set_tamper_fuse_cmd (TZ_HLOS_TAMPER_NOTIFY_FUSE) fails!\n");
 				ret = false;
 				goto err;
 			}
 		} else {
-			dprintf(CRITICAL, "QCOM_VB_SendROT: TZ didn't support this feature! Version: major = %d, minor = %d, patch = %d\n", (version >> 22) & 0x3FF, (version >> 12) & 0x3FF, version & 0x3FF);
+			dprintf(CRITICAL, "send_rot_command: TZ didn't support this feature! Version: major = %d, minor = %d, patch = %d\n", (version >> 22) & 0x3FF, (version >> 12) & 0x3FF, version & 0x3FF);
 		ret = false;
 		goto err;
 		}