From f7a186de2a697c642e6277af7ee45a62197de1a5 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Thu, 15 Jul 2010 23:48:16 +0800 Subject: [PATCH] Does help if the biggest offender is actually a #if DEBUG'ed --- Modules/Storage/ATA/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/Storage/ATA/main.c b/Modules/Storage/ATA/main.c index 4bef197a..be77348a 100644 --- a/Modules/Storage/ATA/main.c +++ b/Modules/Storage/ATA/main.c @@ -354,8 +354,10 @@ int ATA_ScanDisk(int Disk) else // No? Just parse the MBR ATA_ParseMBR(Disk, &data.mbr); + #if DEBUG >= 2 ATA_ReadDMA( Disk, 1, 1, &data ); Debug_HexDump("ATA_ScanDisk", &data, 512); + #endif LEAVE('i', 0); return 1; -- 2.20.1