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

Kernel: Move SB16 to Audio subdirectory

This commit is contained in:
Jelle Raaijmakers 2021-11-21 13:09:38 +01:00 committed by Andreas Kling
parent 4d302e0e88
commit 61d77274db
5 changed files with 4 additions and 4 deletions

View file

@ -9,8 +9,8 @@
#include <Kernel/Arch/x86/IO.h>
#include <Kernel/Arch/x86/InterruptDisabler.h>
#include <Kernel/Debug.h>
#include <Kernel/Devices/Audio/SB16.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/SB16.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Sections.h>

View file

@ -15,10 +15,10 @@
#include <AK/Types.h>
#include <Kernel/API/TimePage.h>
#include <Kernel/Arch/RegisterState.h>
#include <Kernel/Devices/Audio/SB16.h>
#include <Kernel/Devices/ConsoleDevice.h>
#include <Kernel/Devices/Device.h>
#include <Kernel/Devices/NullDevice.h>
#include <Kernel/Devices/SB16.h>
#include <Kernel/UnixTypes.h>
namespace Kernel {