summaryrefslogtreecommitdiff
path: root/Kernel/IRQHandler.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:43:58 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:43:58 +0200
commitbc951ca565d137b2d1bd158e5473bd42cf568d10 (patch)
treed726fbd8f661b52a7c3d549a5f08f98e0443ca0c /Kernel/IRQHandler.cpp
parent98eeb8f22df509b2a711de0e4a01660b6646f229 (diff)
downloadserenity-bc951ca565d137b2d1bd158e5473bd42cf568d10.zip
Kernel: Run clang-format on everything.
Diffstat (limited to 'Kernel/IRQHandler.cpp')
-rw-r--r--Kernel/IRQHandler.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Kernel/IRQHandler.cpp b/Kernel/IRQHandler.cpp
index fb852a4ae5..69c8c40988 100644
--- a/Kernel/IRQHandler.cpp
+++ b/Kernel/IRQHandler.cpp
@@ -1,6 +1,6 @@
#include "IRQHandler.h"
-#include "i386.h"
#include "PIC.h"
+#include "i386.h"
IRQHandler::IRQHandler(byte irq)
: m_irq_number(irq)
@@ -22,4 +22,3 @@ void IRQHandler::disable_irq()
{
PIC::disable(m_irq_number);
}
-