git: 315dec5ce6a2 - main - libusb: Add missing misc class in LIBUSB_CLASS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 06 Aug 2025 14:20:33 UTC
The branch main has been updated by aokblast: URL: https://cgit.FreeBSD.org/src/commit/?id=315dec5ce6a2512a9c269b3e0be4622f7fc3e5ef commit 315dec5ce6a2512a9c269b3e0be4622f7fc3e5ef Author: ShengYi Hung <aokblast@FreeBSD.org> AuthorDate: 2025-08-05 12:28:37 +0000 Commit: ShengYi Hung <aokblast@FreeBSD.org> CommitDate: 2025-08-06 14:05:40 +0000 libusb: Add missing misc class in LIBUSB_CLASS Reviewed by: emaste Approved by: markj (mentor), lwhsu (mentor) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D51738 --- lib/libusb/libusb.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libusb/libusb.h b/lib/libusb/libusb.h index 277b551c46a1..a2ce4136f82a 100644 --- a/lib/libusb/libusb.h +++ b/lib/libusb/libusb.h @@ -66,6 +66,7 @@ enum libusb_class_code { LIBUSB_CLASS_PERSONAL_HEALTHCARE = 15, LIBUSB_CLASS_DIAGNOSTIC_DEVICE = 0xdc, LIBUSB_CLASS_WIRELESS = 0xe0, + LIBUSB_CLASS_MISCELLANEOUS = 0xef, LIBUSB_CLASS_APPLICATION = 0xfe, LIBUSB_CLASS_VENDOR_SPEC = 0xff, };