machine/usb: move MIDI under usb/adc (Audio Device Class) package

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2023-04-28 18:09:54 +02:00
committed by Ron Evans
parent d28b58e4dd
commit c70daa2497
9 changed files with 13 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
// package adc is for USB Audio Device Class devices.
package adc
+2
View File
@@ -0,0 +1,2 @@
// package cdc is for USB Communication Device Class devices.
package cdc
+3
View File
@@ -0,0 +1,3 @@
// package descriptor is for the USB descriptor definitions.
// For the actual implementations, see the individual packages.
package descriptor
+4
View File
@@ -0,0 +1,4 @@
// package usb contains the subpackages with USB descriptors and device
// implementations for standard USB device classes such as the Communcation
// Data Class (CDC), Human Interface Device (HID), and Audio Device Class (ADC).
package usb
+2
View File
@@ -0,0 +1,2 @@
// package hid is for USB Human Interface Devices.
package hid