From 46e22b3d5a938ccd9f41e85aa4ec012721119934 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 23 Jun 2013 14:50:13 +0800 Subject: [PATCH] Modules/AHCI - Debug change --- KernelLand/Modules/Storage/AHCI/ahci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.20.1