projects
/
platform
/
core
/
system
/
libdevice-node.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed7b3ef
)
Fix rndis not recognized in Windows
47/229847/1
accepted/tizen/5.5/unified/20200407.015618
submit/tizen_5.5/20200406.040657
author
INSUN PYO
<insun.pyo@samsung.com>
Fri, 3 Apr 2020 06:52:37 +0000
(15:52 +0900)
committer
Hyotaek Shim
<hyotaek.shim@samsung.com>
Mon, 6 Apr 2020 03:58:06 +0000
(
03:58
+0000)
Change-Id: I971a2378b6661038c034c7389e1f5155844f9411
(cherry picked from commit
e1bcac1f94bbaa0b7cfb66a63776437863b4a7b7
)
hw/usb_gadget_common.c
patch
|
blob
|
history
diff --git
a/hw/usb_gadget_common.c
b/hw/usb_gadget_common.c
index c27d065355048d4aa19aacd3afbad90939dbac20..270d72b3405ed7e17705389e6a412da9e0313470 100644
(file)
--- a/
hw/usb_gadget_common.c
+++ b/
hw/usb_gadget_common.c
@@
-229,9
+229,9
@@
static int id_to_gadget(struct usb_gadget_id *gadget_id,
case USB_FUNCTION_ACM | USB_FUNCTION_SDB | USB_FUNCTION_RNDIS:
n_configs = 1;
- functions[0][0] = USB_FUNCTION_
ACM
;
- functions[0][1] = USB_FUNCTION_
SDB
;
- functions[0][2] = USB_FUNCTION_
RNDIS
;
+ functions[0][0] = USB_FUNCTION_
RNDIS
;
+ functions[0][1] = USB_FUNCTION_
ACM
;
+ functions[0][2] = USB_FUNCTION_
SDB
;
functions[0][3] = 0;
gadget->attrs.idProduct = 0x6864;
break;