diff options
author | Jesse Buhagiar <jooster669@gmail.com> | 2021-02-27 15:10:37 +1100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-12 18:17:25 +0430 |
commit | 06f1edb516af405bd7e8d29ea58b0a7ba88241c5 (patch) | |
tree | ecf05cd510090545bee9713afa205f72d62686bd /Kernel/Debug.h.in | |
parent | e044a3e428496b00f5a58865011f77a7ef56ba37 (diff) | |
download | serenity-06f1edb516af405bd7e8d29ea58b0a7ba88241c5.zip |
USB: Further Implement USB Structures
These are the actual structures that allow USB to work (i.e the ones
actually defined in the specification). This should provide us enough
of a baseline implementation that we can build on to support
different types of USB device.
Diffstat (limited to 'Kernel/Debug.h.in')
-rw-r--r-- | Kernel/Debug.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/Debug.h.in b/Kernel/Debug.h.in index 23b57a1f7c..c9b8b6a368 100644 --- a/Kernel/Debug.h.in +++ b/Kernel/Debug.h.in @@ -302,6 +302,10 @@ #cmakedefine01 UHCI_VERBOSE_DEBUG #endif +#ifndef USB_DEBUG +#cmakedefine01 USB_DEBUG +#endif + #ifndef VFS_DEBUG #cmakedefine01 VFS_DEBUG #endif |