diff options
author | Liav A <liavalb@gmail.com> | 2021-08-27 12:24:50 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-31 16:51:13 +0200 |
commit | 01ae6147274e210a157f83856d290e8b1cfbb73f (patch) | |
tree | 6d2602a49dd1d616d41183635c30baa7d59d5b5e /Kernel/CMakeLists.txt | |
parent | e418740645c2ac28d725c859ba07df0d76b3aab8 (diff) | |
download | serenity-01ae6147274e210a157f83856d290e8b1cfbb73f.zip |
Kernel/VirtIO: Remove redundant VirtIO word from filenames
Now that all related VirtIO classes are in the VirtIO namespace, let's
just remove the redundant VirtIO word from filenames.
Diffstat (limited to 'Kernel/CMakeLists.txt')
-rw-r--r-- | Kernel/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index 65e35c1c9b..4fbfe45109 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -41,11 +41,11 @@ set(KERNEL_SOURCES Bus/USB/USBManagement.cpp Bus/USB/USBPipe.cpp Bus/USB/USBTransfer.cpp - Bus/VirtIO/VirtIO.cpp - Bus/VirtIO/VirtIOConsole.cpp - Bus/VirtIO/VirtIOConsolePort.cpp - Bus/VirtIO/VirtIOQueue.cpp - Bus/VirtIO/VirtIORNG.cpp + Bus/VirtIO/Console.cpp + Bus/VirtIO/ConsolePort.cpp + Bus/VirtIO/Device.cpp + Bus/VirtIO/Queue.cpp + Bus/VirtIO/RNG.cpp CMOS.cpp CommandLine.cpp ConsoleDevice.cpp |