Merge remote-tracking branch 'aosp/upstream-hikey' into armtf am: 1f3ebb070b am: 4f9328119c am: 01c87cf712
am: 36aa82dda5

Change-Id: Id311c7cb25b4826fa344375d87db358fbaf62e10
diff --git a/plat/hikey/usb.c b/plat/hikey/usb.c
index 0aad84a..57adfbc 100644
--- a/plat/hikey/usb.c
+++ b/plat/hikey/usb.c
@@ -47,6 +47,8 @@
 
 #define USB_BLOCK_HIGH_SPEED_SIZE	512
 
+#define VERSION_BOOTLOADER	"0.4"
+
 struct ep_type {
 	unsigned char		active;
 	unsigned char		busy;
@@ -1271,7 +1273,7 @@
 		tx_status(response);
 		rx_cmd();
 	} else if (!strncmp(cmdbuf + 7, "version-bootloader", 18)) {
-		bytes = sprintf(response, "OKAY%s", version_string);
+		bytes = sprintf(response, "OKAY%s", VERSION_BOOTLOADER);
 		response[bytes] = '\0';
 		tx_status(response);
 		rx_cmd();