usb gadget: Fix default value of bcdDevice 58/168158/1
authorKrzysztof Opasiak <k.opasiak@samsung.com>
Wed, 24 Jan 2018 11:57:01 +0000 (12:57 +0100)
committerKrzysztof Opasiak <k.opasiak@samsung.com>
Wed, 24 Jan 2018 12:15:21 +0000 (13:15 +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 fcf144c..36ff095 100644 (file)
@@ -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"