msm: display: Handle display shutdown properly for 8x25

When continuous splash scren is enabled, the MDP and MIPI DSI
interrupts are not getting disabled during display shutdown
sequence. This is causing huge number of interrupts getting fired
during display init on kernel side causing the target to not boot
up sometimes. Handle display shutdown during bootloader exit
properly.

Change-Id: I25879d62e922a0b2e974aaea6238b4775587cc1d
Signed-off-by: Padmanabhan Komanduru <pkomandu@codeaurora.org>
diff --git a/target/msm7627a/target_display.c b/target/msm7627a/target_display.c
index 30f7946..0c4d073 100644
--- a/target/msm7627a/target_display.c
+++ b/target/msm7627a/target_display.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
+/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are
@@ -9,7 +9,7 @@
  *       copyright notice, this list of conditions and the following
  *       disclaimer in the documentation and/or other materials provided
  *       with the distribution.
- *     * Neither the name of Code Aurora Forum, Inc. nor the names of its
+ *     * Neither the name of The Linux Foundation, Inc. nor the names of its
  *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
  *
@@ -158,6 +158,6 @@
 void display_shutdown(void)
 {
 	dprintf(SPEW, "display_shutdown()\n");
-	if (display_enabled && !target_cont_splash_screen())
+	if (display_enabled)
 		msm_display_off();
 }