1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

Meta+Kernel: Make clang-format-10 clean

This commit is contained in:
Ben Wiederhake 2020-09-18 09:49:51 +02:00 committed by Andreas Kling
parent fa62c5595e
commit 64cc3f51d0
61 changed files with 123 additions and 118 deletions

View file

@ -29,9 +29,9 @@
#include <AK/CircularQueue.h>
#include <AK/DoublyLinkedList.h>
#include <AK/Types.h>
#include <Kernel/API/KeyCode.h>
#include <Kernel/Devices/CharacterDevice.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/API/KeyCode.h>
#include <Kernel/Random.h>
#include <LibKeyboard/CharacterMap.h>

View file

@ -26,8 +26,8 @@
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Devices/PCSpeaker.h>
#include <Kernel/Time/PIT.h>
#include <Kernel/IO.h>
#include <Kernel/Time/PIT.h>
void PCSpeaker::tone_on(int frequency)
{

View file

@ -72,7 +72,7 @@ PS2MouseDevice::~PS2MouseDevice()
void PS2MouseDevice::create()
{
s_the.ensure_instance();
s_the.ensure_instance();
}
PS2MouseDevice& PS2MouseDevice::the()

View file

@ -27,9 +27,9 @@
#pragma once
#include <AK/CircularQueue.h>
#include <Kernel/API/MousePacket.h>
#include <Kernel/Devices/CharacterDevice.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/API/MousePacket.h>
#include <Kernel/Random.h>
namespace Kernel {

View file

@ -28,10 +28,10 @@
#include <AK/Singleton.h>
#include <AK/StringView.h>
#include <Kernel/Devices/SB16.h>
#include <Kernel/IO.h>
#include <Kernel/Thread.h>
#include <Kernel/VM/AnonymousVMObject.h>
#include <Kernel/VM/MemoryManager.h>
#include <Kernel/IO.h>
//#define SB16_DEBUG

View file

@ -28,9 +28,9 @@
#include <Kernel/Devices/CharacterDevice.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/VM/PhysicalPage.h>
#include <Kernel/WaitQueue.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel {

View file

@ -28,10 +28,10 @@
#include <AK/OwnPtr.h>
#include <AK/Singleton.h>
#include <AK/String.h>
#include <Kernel/API/MousePacket.h>
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/CommandLine.h>
#include <Kernel/Devices/VMWareBackdoor.h>
#include <Kernel/API/MousePacket.h>
#include <Kernel/IO.h>
namespace Kernel {
@ -82,8 +82,7 @@ inline void vmware_high_bandwidth_get(VMWareCommand& command)
: "+a"(command.ax), "+b"(command.bx), "+c"(command.cx), "+d"(command.dx), "+S"(command.si), "+D"(command.di));
}
class VMWareBackdoorDetector
{
class VMWareBackdoorDetector {
public:
VMWareBackdoorDetector()
{