summaryrefslogtreecommitdiff
path: root/Kernel/Interrupts/IRQController.h
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-09-18 09:49:51 +0200
committerAndreas Kling <kling@serenityos.org>2020-09-25 21:18:17 +0200
commit64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae (patch)
tree8088b0dfe9a558a28137b2168414371a4fe891b6 /Kernel/Interrupts/IRQController.h
parentfa62c5595e98a8d93d7a6e54b4eab45d9095a2c9 (diff)
downloadserenity-64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae.zip
Meta+Kernel: Make clang-format-10 clean
Diffstat (limited to 'Kernel/Interrupts/IRQController.h')
-rw-r--r--Kernel/Interrupts/IRQController.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Interrupts/IRQController.h b/Kernel/Interrupts/IRQController.h
index b04613a282..35e0fd5276 100644
--- a/Kernel/Interrupts/IRQController.h
+++ b/Kernel/Interrupts/IRQController.h
@@ -39,7 +39,7 @@ enum class IRQControllerType {
class IRQController : public RefCounted<IRQController> {
public:
- virtual ~IRQController() {}
+ virtual ~IRQController() { }
virtual void enable(const GenericInterruptHandler&) = 0;
virtual void disable(const GenericInterruptHandler&) = 0;
@@ -57,7 +57,7 @@ public:
virtual IRQControllerType type() const = 0;
protected:
- IRQController() {}
+ IRQController() { }
virtual void initialize() = 0;
bool m_hard_disabled { false };
};