platform: msm_shared: Set boot config 5 to UFS

Boot config 5 should be boot from SD card first and then boot from UFS.
Given that support for fallback is not currently present, this change
hard codes config 5 to boot from UFS instead of crashing due to an
unknown config.

CRs-Fixed: 1040865
Change-Id: I433a2353fb5e7c3a5a28734fd3fde28321dd1ce5
diff --git a/platform/msm_shared/boot_device.c b/platform/msm_shared/boot_device.c
index 3416ad9..f73b4dd 100644
--- a/platform/msm_shared/boot_device.c
+++ b/platform/msm_shared/boot_device.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2014-2016, 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
@@ -81,6 +81,7 @@
 			snprintf(buf, ((sizeof((struct mmc_device *)dev)->host.base)*2) + 7,"%x.sdhci", ((struct mmc_device *)dev)->host.base);
 			break;
 		case BOOT_UFS:
+		case BOOT_SD_ELSE_UFS:
 			snprintf(buf, ((sizeof((struct ufs_dev *)dev)->base)*2) + 7, "%x.ufshc", ((struct ufs_dev *)dev)->base);
 			break;
 #endif