Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: subsys: usb: bos: Remove dummy_descriptor struct #87591

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions tests/subsys/usb/bos/src/test_bos.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ LOG_MODULE_REGISTER(test_main, LOG_LEVEL_DBG);
* Compare old style USB BOS definition with section aligned
*/

static const uint8_t dummy_descriptor[] = {
0x00, 0x01, 0x02
};

static struct webusb_bos_desc {
struct usb_bos_descriptor bos;
struct usb_bos_platform_descriptor platform_webusb;
Expand Down Expand Up @@ -91,8 +87,8 @@ static struct webusb_bos_desc {
.capability_data_msos = {
/* Windows version (8.1) (0x06030000) */
.dwWindowsVersion = sys_cpu_to_le32(0x06030000),
.wMSOSDescriptorSetTotalLength =
sys_cpu_to_le16(sizeof(dummy_descriptor)),
/* The MSOS2.0 descriptor is not relevant here. */
.wMSOSDescriptorSetTotalLength = 0,
.bMS_VendorCode = 0x02,
.bAltEnumCode = 0x00
}
Expand Down Expand Up @@ -160,8 +156,8 @@ USB_DEVICE_BOS_DESC_DEFINE_CAP struct usb_bos_msosv2 {
.cap = {
/* Windows version (8.1) (0x06030000) */
.dwWindowsVersion = sys_cpu_to_le32(0x06030000),
.wMSOSDescriptorSetTotalLength =
sys_cpu_to_le16(sizeof(dummy_descriptor)),
/* The MSOS2.0 descriptor is not relevant here. */
.wMSOSDescriptorSetTotalLength = 0,
.bMS_VendorCode = 0x02,
.bAltEnumCode = 0x00,
},
Expand Down
Loading