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

Kernel/Storage: Rename AHCIPortHandler => AHCIInterruptHandler

This reflects better what this object is all about - handling interrupts
of AHCI ports, and nothing more than that.
This commit is contained in:
Liav A 2022-04-01 23:48:46 +03:00 committed by Idan Horowitz
parent cc734c106e
commit bf82c4b81b
6 changed files with 23 additions and 23 deletions

View file

@ -21,7 +21,7 @@
#include <Kernel/Random.h>
#include <Kernel/Sections.h>
#include <Kernel/Storage/ATA/AHCI.h>
#include <Kernel/Storage/ATA/AHCIPortHandler.h>
#include <Kernel/Storage/ATA/AHCIInterruptHandler.h>
#include <Kernel/Storage/ATA/ATADevice.h>
#include <Kernel/WaitQueue.h>
@ -29,7 +29,7 @@ namespace Kernel {
class AsyncBlockDeviceRequest;
class AHCIPortHandler;
class AHCIInterruptHandler;
class AHCIPort
: public RefCounted<AHCIPort>
, public Weakable<AHCIPort> {