From c1fe8673e2ee93467d13104199e6785cb6b00466 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Tue, 21 Jan 2025 15:24:53 +0100 Subject: [PATCH] Applied fix from discord forum to fix AHCI reset bug to make AHCI drives visible to the system. --- repos/os/src/drivers/ahci/ahci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/os/src/drivers/ahci/ahci.h b/repos/os/src/drivers/ahci/ahci.h index 8a11e51923..af9d466b79 100644 --- a/repos/os/src/drivers/ahci/ahci.h +++ b/repos/os/src/drivers/ahci/ahci.h @@ -547,7 +547,7 @@ struct Ahci::Port : private Port_base Port_base(index, plat, hba, delayer), protocol(protocol), rm(rm) { - reset(); + //reset(); if (!enable()) throw 1;