diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 15:09:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-29 15:09:24 -0500 |
| commit | 20d9401703bff7241645c9883828ad10beae6fa7 (patch) | |
| tree | e446d471a0eaf4ed7ac67e878ce4fb02334a2acb /src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc | |
| parent | a9019ecaaad76cb3569a6852dbc30c48c5436d1d (diff) | |
| parent | ceabd82ac8e796249feacf39c836034ed5e11c6d (diff) | |
Merge pull request #91 from nekernel-org/dev
dev->stable
Diffstat (limited to 'src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc')
| -rw-r--r-- | src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc b/src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc index 36a027a2..79013b26 100644 --- a/src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc +++ b/src/kernel/HALKit/AMD64/HalAPICDmaWrapper.cc @@ -18,7 +18,7 @@ LAPICDmaWrapper::~LAPICDmaWrapper() = default; /// @brief Read from APIC controller. /// @param reg register. /***********************************************************************************/ -UInt32 LAPICDmaWrapper::Read(UInt16 reg) noexcept { +UInt32 LAPICDmaWrapper::Read(UInt16 reg) { MUST_PASS(this->fApic); UInt32 volatile* io_apic = (UInt32 volatile*) this->fApic; @@ -30,7 +30,7 @@ UInt32 LAPICDmaWrapper::Read(UInt16 reg) noexcept { /// @param reg register. /// @param value value. /***********************************************************************************/ -Void LAPICDmaWrapper::Write(UInt16 reg, UInt32 value) noexcept { +Void LAPICDmaWrapper::Write(UInt16 reg, UInt32 value) { MUST_PASS(this->fApic); UInt32 volatile* io_apic = (UInt32 volatile*) this->fApic; |
