Kernel: Make ATABus use BAN::Atomic<> instead of gcc builtin atomics

This commit is contained in:
2024-07-21 17:39:26 +03:00
parent ffe73165f9
commit 77b5e6d44a
2 changed files with 8 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ namespace Kernel
const uint16_t m_ctrl;
Mutex m_mutex;
volatile bool m_has_got_irq { false };
BAN::Atomic<bool> m_has_got_irq { false };
// Non-owning pointers
BAN::Vector<ATADevice*> m_devices;