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

Kernel: Renable UHCIController on 64-bit processors

This commit is contained in:
Hendiadyoin1 2021-03-07 14:32:34 +01:00 committed by Andreas Kling
parent 7ba3c22931
commit 0b04363b01
4 changed files with 31 additions and 41 deletions

View file

@ -29,16 +29,13 @@
#include <AK/Platform.h>
// FIXME: This should not be i386-specific.
#if ARCH(I386)
# include <AK/NonnullOwnPtr.h>
# include <Kernel/Devices/USB/UHCIDescriptorTypes.h>
# include <Kernel/IO.h>
# include <Kernel/PCI/Device.h>
# include <Kernel/Process.h>
# include <Kernel/Time/TimeManagement.h>
# include <Kernel/VM/ContiguousVMObject.h>
#include <AK/NonnullOwnPtr.h>
#include <Kernel/Devices/USB/UHCIDescriptorTypes.h>
#include <Kernel/IO.h>
#include <Kernel/PCI/Device.h>
#include <Kernel/Process.h>
#include <Kernel/Time/TimeManagement.h>
#include <Kernel/VM/ContiguousVMObject.h>
namespace Kernel::USB {
@ -105,4 +102,3 @@ private:
};
}
#endif