aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux
diff options
context:
space:
mode:
authorBerk Cem Goksel <berkcgoksel@gmail.com>2026-02-15 21:19:44 +0300
committerAleksandr Nogikh <nogikh@google.com>2026-02-27 16:03:24 +0000
commit0da78f912658755fda575898adbb6ae2bc65e443 (patch)
treed34340dc1db21126c9f161c7e68eda93dc51cd6e /sys/linux
parenta0cf4ad0bb38ac91e85fe7a60f3c77f7e083547f (diff)
sys/linux: revert unnecessary idVendor/idProduct type changes in usb_device_descriptor
Diffstat (limited to 'sys/linux')
-rw-r--r--sys/linux/vusb.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/linux/vusb.txt b/sys/linux/vusb.txt
index 47e0523fd..ce2c0c58f 100644
--- a/sys/linux/vusb.txt
+++ b/sys/linux/vusb.txt
@@ -50,8 +50,8 @@ type usb_device_descriptor_verbose_t[USB, CLASS, SUBCLASS, PROTOCOL, PACKET, VEN
bDeviceSubClass const[SUBCLASS, int8]
bDeviceProtocol const[PROTOCOL, int8]
bMaxPacketSize0 PACKET
- idVendor VENDOR
- idProduct PRODUCT
+ idVendor const[VENDOR, int16]
+ idProduct const[PRODUCT, int16]
bcdDevice const[DEVICE, int16]
iManufacturer const[1, int8]
iProduct const[2, int8]
@@ -61,8 +61,8 @@ type usb_device_descriptor_verbose_t[USB, CLASS, SUBCLASS, PROTOCOL, PACKET, VEN
configs CFS
} [packed]
-type usb_device_descriptor_t[CLASS, SUBCLASS, PROTOCOL, VENDOR, PRODUCT, DEVICE, CFS] usb_device_descriptor_verbose_t[flags[usb_versions, int16], CLASS, SUBCLASS, PROTOCOL, flags[usb_device_max_packet_sizes, int8], const[VENDOR, int16], const[PRODUCT, int16], DEVICE, CFS]
-type usb_device_descriptor_fixed_t[USB, CLASS, SUBCLASS, PROTOCOL, PACKET, VENDOR, PRODUCT, DEVICE, CFS] usb_device_descriptor_verbose_t[const[USB, int16], CLASS, SUBCLASS, PROTOCOL, const[PACKET, int8], const[VENDOR, int16], const[PRODUCT, int16], DEVICE, CFS]
+type usb_device_descriptor_t[CLASS, SUBCLASS, PROTOCOL, VENDOR, PRODUCT, DEVICE, CFS] usb_device_descriptor_verbose_t[flags[usb_versions, int16], CLASS, SUBCLASS, PROTOCOL, flags[usb_device_max_packet_sizes, int8], VENDOR, PRODUCT, DEVICE, CFS]
+type usb_device_descriptor_fixed_t[USB, CLASS, SUBCLASS, PROTOCOL, PACKET, VENDOR, PRODUCT, DEVICE, CFS] usb_device_descriptor_verbose_t[const[USB, int16], CLASS, SUBCLASS, PROTOCOL, const[PACKET, int8], VENDOR, PRODUCT, DEVICE, CFS]
usb_versions = 0x110, 0x200, 0x201, 0x250, 0x300, 0x310