From: John Hodge Date: Sun, 23 Jun 2013 06:50:13 +0000 (+0800) Subject: Modules/AHCI - Debug change X-Git-Tag: rel0.15~413 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=46e22b3d5a938ccd9f41e85aa4ec012721119934;p=tpg%2Facess2.git Modules/AHCI - Debug change --- diff --git a/KernelLand/Modules/Storage/AHCI/ahci.c b/KernelLand/Modules/Storage/AHCI/ahci.c index 698ffe94..4aa8df6a 100644 --- a/KernelLand/Modules/Storage/AHCI/ahci.c +++ b/KernelLand/Modules/Storage/AHCI/ahci.c @@ -486,7 +486,7 @@ int AHCI_SendLBA48Cmd(tAHCI_Port *Port, int bWrite, regs.SectorCountExp = 0; regs.Control = 0; - LOG("Sending command %02x with %p+0x%x", Cmd, Data, Size); + LOG("Sending command %02x : 0x%llx with %p+0x%x", Cmd, LBA, Data, Size); AHCI_DoFIS(Port, bWrite, sizeof(regs), ®s, 0, NULL, Size, Data); return 0; @@ -518,7 +518,7 @@ int AHCI_SendLBA28Cmd(tAHCI_Port *Port, int bWrite, regs.SectorCountExp = 0; regs.Control = 0; - LOG("Sending command %02x with %p+0x%x", Cmd, Data, Size); + LOG("Sending command %02x : 0x%llx with %p+0x%x", Cmd, LBA, Data, Size); AHCI_DoFIS(Port, bWrite, sizeof(regs), ®s, 0, NULL, Size, Data); return 0;