mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:17:35 +00:00
Everywhere: Remove unnecessary debug comments.
It would be tempting to uncomment these statements, but that won't work with the new changes. This was done with the following commands: find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \; find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \;
This commit is contained in:
parent
1a3a0836c0
commit
acdcf59a33
90 changed files with 0 additions and 200 deletions
|
@ -34,8 +34,6 @@
|
|||
#include <Kernel/IO.h>
|
||||
#include <Kernel/TTY/VirtualConsole.h>
|
||||
|
||||
//#define KEYBOARD_DEBUG
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
#define IRQ_KEYBOARD 1
|
||||
|
|
|
@ -49,8 +49,6 @@ namespace Kernel {
|
|||
#define PS2MOUSE_INTELLIMOUSE_ID 0x03
|
||||
#define PS2MOUSE_INTELLIMOUSE_EXPLORER_ID 0x04
|
||||
|
||||
//#define PS2MOUSE_DEBUG
|
||||
|
||||
static AK::Singleton<PS2MouseDevice> s_the;
|
||||
|
||||
PS2MouseDevice::PS2MouseDevice()
|
||||
|
|
|
@ -33,8 +33,6 @@
|
|||
#include <Kernel/VM/AnonymousVMObject.h>
|
||||
#include <Kernel/VM/MemoryManager.h>
|
||||
|
||||
//#define SB16_DEBUG
|
||||
|
||||
namespace Kernel {
|
||||
#define SB16_DEFAULT_IRQ 5
|
||||
|
||||
|
|
|
@ -33,9 +33,6 @@
|
|||
#include <Kernel/VM/MemoryManager.h>
|
||||
|
||||
#define UHCI_ENABLED 1
|
||||
//#define UHCI_DEBUG
|
||||
//#define UHCI_VERBOSE_DEBUG
|
||||
|
||||
static constexpr u8 MAXIMUM_NUMBER_OF_TDS = 128; // Upper pool limit. This consumes the second page we have allocated
|
||||
static constexpr u8 MAXIMUM_NUMBER_OF_QHS = 64;
|
||||
|
||||
|
|
|
@ -53,8 +53,6 @@ namespace Kernel {
|
|||
#define VMWARE_PORT 0x5658
|
||||
#define VMWARE_PORT_HIGHBANDWIDTH 0x5659
|
||||
|
||||
//#define VMWAREBACKDOOR_DEBUG
|
||||
|
||||
inline void vmware_out(VMWareCommand& command)
|
||||
{
|
||||
command.magic = VMWARE_MAGIC;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue