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

Kernel/USB: Add a simple UHCIController::stop()

This stops the controller and waits for it to complete.
This commit is contained in:
Andreas Kling 2020-09-04 21:07:01 +02:00
parent 1254447bd7
commit eb74f62201
2 changed files with 13 additions and 0 deletions

View file

@ -35,6 +35,7 @@ public:
virtual ~UHCIController() override;
void reset();
void stop();
private:
UHCIController(PCI::Address, PCI::ID);