diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
| commit | 9e746d42d2e3faa526f12ba222f5ee6924dd30f9 (patch) | |
| tree | 7f1a83f69562a2725bb9cda27c31d120640d2c1c /src/modules/XHCI | |
| parent | 731758b271233b9c11052001ffc20a5a2ca1f365 (diff) | |
feat! breaking API changes, use header guards and libSystem fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/modules/XHCI')
| -rw-r--r-- | src/modules/XHCI/XHCI.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/XHCI/XHCI.h b/src/modules/XHCI/XHCI.h index 6eb25fac..16abf3f3 100644 --- a/src/modules/XHCI/XHCI.h +++ b/src/modules/XHCI/XHCI.h @@ -12,7 +12,8 @@ ======================================== */ -#pragma once +#ifndef XHCI_XHCI_H +#define XHCI_XHCI_H #include <NeKit/Config.h> @@ -63,4 +64,6 @@ typedef struct USBInterruptEnableRegister final { 32-bit physical adress of Frame List. Remember that first 12 bytes are always 0. The Frame List must contain 1024 entries. */ -} // namespace Kernel
\ No newline at end of file +} // namespace Kernel + +#endif |
