target: rename splash screen display configuration functions

Display initialization and shutdown functions for specific MSM targets
are defined in the corresponding target folders.  However, these
functions share the same name as the generic display_init and
display_shutdown function defined as the platform level api.
Rename these to target_display_init and target_display_shutdown to
be in line with the other target specific APIs.

Change-Id: I63797952182315f1006e22ec47e08a25a786daa4
diff --git a/target/msm8974/target_display.c b/target/msm8974/target_display.c
old mode 100644
new mode 100755
index c32cef0..e939f34
--- a/target/msm8974/target_display.c
+++ b/target/msm8974/target_display.c
@@ -330,7 +330,7 @@
 	return 0;
 }
 
-void display_init(void)
+void target_display_init(void)
 {
 	uint32_t hw_id = board_hardware_id();
 	uint32_t panel_loop = 0;
@@ -366,7 +366,7 @@
 	}
 }
 
-void display_shutdown(void)
+void target_display_shutdown(void)
 {
 	uint32_t hw_id = board_hardware_id();
 	switch (hw_id) {