serenity/Kernel/Storage
asynts 8465683dcf Everywhere: Debug macros instead of constexpr.
This was done with the following script:

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/dbgln<debug_([a-z_]+)>/dbgln<\U\1_DEBUG>/' {} \;

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/if constexpr \(debug_([a-z0-9_]+)/if constexpr \(\U\1_DEBUG/' {} \;
2021-01-25 09:47:36 +01:00
..
Partition Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
IDEChannel.cpp Everywhere: Debug macros instead of constexpr. 2021-01-25 09:47:36 +01:00
IDEChannel.h Kernel: Add a method to gather the devices count of a Storage controller 2020-12-21 00:19:21 +01:00
IDEController.cpp Kernel: Untangle StorageController from PCI::DeviceController 2021-01-22 22:17:39 +01:00
IDEController.h Kernel: Untangle StorageController from PCI::DeviceController 2021-01-22 22:17:39 +01:00
PATADiskDevice.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
PATADiskDevice.h Kernel: Make device generate their own names 2021-01-22 22:17:39 +01:00
RamdiskController.cpp Kernel: Implement RamdiskDevice 2021-01-22 22:17:39 +01:00
RamdiskController.h Kernel: Implement RamdiskDevice 2021-01-22 22:17:39 +01:00
RamdiskDevice.cpp Kernel: Make device generate their own names 2021-01-22 22:17:39 +01:00
RamdiskDevice.h Kernel: Make device generate their own names 2021-01-22 22:17:39 +01:00
StorageController.h Kernel: Implement RamdiskDevice 2021-01-22 22:17:39 +01:00
StorageDevice.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
StorageDevice.h Kernel: Implement RamdiskDevice 2021-01-22 22:17:39 +01:00
StorageManagement.cpp Kernel: Allow disabling of IDE controllers with disable_ide 2021-01-24 22:16:18 +01:00
StorageManagement.h Kernel: Allow to boot from a partition with partition UUID 2021-01-01 22:59:48 +01:00