LK: Add support for splash screen on MSM7627_SURF

Moving lcdc.c file from qsd8k and msm7x30 to msm_shared under platform
directory.
diff --git a/platform/msm7k/platform.c b/platform/msm7k/platform.c
index ded9cca..409af52 100755
--- a/platform/msm7k/platform.c
+++ b/platform/msm7k/platform.c
@@ -2,6 +2,8 @@
  * Copyright (c) 2008, Google Inc.
  * All rights reserved.
  *
+ * Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved.
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -71,4 +73,9 @@
 	ASSERT(fb_config);
 	fbcon_setup(fb_config);
 #endif
+#if DISPLAY_TYPE_LCDC
+    fb_config = lcdc_init();
+    ASSERT(fb_config);
+    fbcon_setup(fb_config);
+#endif
 }