diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-29 20:32:23 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-29 20:32:23 +0100 |
| commit | 708400a70921055b06013f9b149449be64a7d585 (patch) | |
| tree | fca84921803172a0d41b28fb605b13a1d3c8dc48 /dev/ZKAKit/HALKit | |
| parent | 1f8df0670cbda950901162b720393d15acd70261 (diff) | |
IMP: Code quality fixes.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/HALKit')
| -rw-r--r-- | dev/ZKAKit/HALKit/AMD64/HalDebugPort.cc | 2 | ||||
| -rw-r--r-- | dev/ZKAKit/HALKit/AMD64/HalInterruptAPI.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKAKit/HALKit/AMD64/HalDebugPort.cc b/dev/ZKAKit/HALKit/AMD64/HalDebugPort.cc index bd2a0037..eba75654 100644 --- a/dev/ZKAKit/HALKit/AMD64/HalDebugPort.cc +++ b/dev/ZKAKit/HALKit/AMD64/HalDebugPort.cc @@ -34,7 +34,7 @@ namespace Kernel HAL::rt_wait_400ns(); if (HAL::In16(theHook->fPort[i] != kDebugUnboundPort)) - theHook->fBoundCnt++; + ++theHook->fBoundCnt; } } } // namespace Kernel diff --git a/dev/ZKAKit/HALKit/AMD64/HalInterruptAPI.asm b/dev/ZKAKit/HALKit/AMD64/HalInterruptAPI.asm index 942530d7..bf36194a 100644 --- a/dev/ZKAKit/HALKit/AMD64/HalInterruptAPI.asm +++ b/dev/ZKAKit/HALKit/AMD64/HalInterruptAPI.asm @@ -1,7 +1,7 @@ ;; /* ;; * --------------------------------------------------- ;; * -;; * Copyright EL Mahrouss Logic., all rights reserved. +;; * Copyright EL Mahrouss Logic, all rights reserved. ;; * ;; * File: HalInterruptAPI.asm ;; * Purpose: Interrupt API, redirect raw interrupts into their handlers. |
