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:
parent
cc734c106e
commit
bf82c4b81b
6 changed files with 23 additions and 23 deletions
|
@ -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> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue