usb gadget: Fix default value of bcdDevice 53/174853/1
authorKrzysztof Opasiak <k.opasiak@samsung.com>
Wed, 24 Jan 2018 11:57:01 +0000 (12:57 +0100)
committerPaweł Szewczyk <p.szewczyk@samsung.com>
Fri, 23 Mar 2018 14:09:24 +0000 (15:09 +0100)
0xffff is not a correct BCD value thus let's replace it with 0x0100.

Change-Id: I6312575da80a2670fcbb62db79d2ed4d040ae367
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
hw/usb_gadget/usb_gadget.c

index 32641d0..cc965a6 100755 (executable)
@@ -30,7 +30,7 @@
 /* Based on slp-gadget and initial version of USB HAL by Taeyoung Kim */
 #define DEFAULT_VID 0x04e8
 #define DEFAULT_PID 0x6860
-#define DEFAULT_BCD_DEVICE 0xffff
+#define DEFAULT_BCD_DEVICE 0x0100
 
 #define DEFAULT_LANG 0x409 /* US_en */
 #define DEFAULT_MANUFACTURER "Samsung"