diff options
author | xyzz | 2017-10-13 19:36:12 +0300 |
---|---|---|
committer | xyzz | 2017-10-13 19:36:12 +0300 |
commit | 52a651371faf94bab25089cdc3c094219db91f40 (patch) | |
tree | df52ec5136c9c870c2a01f91f4c713b094f2067f /include/kernel/udcd.h | |
parent | Update modules NIDs (diff) | |
download | vds-libraries-52a651371faf94bab25089cdc3c094219db91f40.tar.gz |
psp2kern/udcd.h: fix a broken header
Diffstat (limited to 'include/kernel/udcd.h')
-rw-r--r-- | include/kernel/udcd.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/kernel/udcd.h b/include/kernel/udcd.h index 46eb51f..fef2bf6 100644 --- a/include/kernel/udcd.h +++ b/include/kernel/udcd.h @@ -10,16 +10,16 @@ extern "C" { /** Enumeration for Device and/or Interface Class codes */ typedef enum SceUdcdUsbClass { - USB_CLASS_PER_INTERFACE 0x00, //!< for DeviceClass - USB_CLASS_AUDIO 0x01, - USB_CLASS_COMM 0x02, - USB_CLASS_HID 0x03, - USB_CLASS_PTP 0x06, - USB_CLASS_PRINTER 0x07, - USB_CLASS_MASS_STORAGE 0x08, - USB_CLASS_HUB 0x09, - USB_CLASS_DATA 0x0A, - USB_CLASS_VENDOR_SPEC 0xFF + USB_CLASS_PER_INTERFACE = 0x00, //!< for DeviceClass + USB_CLASS_AUDIO = 0x01, + USB_CLASS_COMM = 0x02, + USB_CLASS_HID = 0x03, + USB_CLASS_PTP = 0x06, + USB_CLASS_PRINTER = 0x07, + USB_CLASS_MASS_STORAGE = 0x08, + USB_CLASS_HUB = 0x09, + USB_CLASS_DATA = 0x0A, + USB_CLASS_VENDOR_SPEC = 0xFF } SceUdcdUsbClass; /** Enumeration for descriptor types |