target: msm8226: select JDI 1080p panel for 8926 v2 devices

8926v2 devices with external buck have 1080p JDI panel as the
default panel. Add the corresponding subtype ID for these
devices and select the panel accordingly.

CRs-Fixed: 608652
Change-Id: Iec5a1b16294e52374fa3c54cf7a5abaf7dc11d29
diff --git a/target/msm8226/oem_panel.c b/target/msm8226/oem_panel.c
index 9f3127b..a0fcc41 100755
--- a/target/msm8226/oem_panel.c
+++ b/target/msm8226/oem_panel.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2013-2014, 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
@@ -72,6 +72,7 @@
 	HW_PLATFORM_SUBTYPE_SKUF = 2,
 	HW_PLATFORM_SUBTYPE_1080P = 2,
 	HW_PLATFORM_SUBTYPE_SKUAB = 3,
+	HW_PLATFORM_SUBTYPE_1080P_EXT_BUCK = 3,
 	HW_PLATFORM_SUBTYPE_SKUG = 5,
 };
 
@@ -349,11 +350,11 @@
 		break;
 	case HW_PLATFORM_MTP:
 	case HW_PLATFORM_SURF:
-		if (hw_subtype == HW_PLATFORM_SUBTYPE_1080P) {
+		if ((hw_subtype == HW_PLATFORM_SUBTYPE_1080P) ||
+			(hw_subtype == HW_PLATFORM_SUBTYPE_1080P_EXT_BUCK))
 			panel_id = JDI_1080P_VIDEO_PANEL;
-		} else {
+		else
 			panel_id = nt35590_panel_id;
-		}
 		break;
 	default:
 		dprintf(CRITICAL, "Display not enabled for %d HW type\n"