Cleanup diagnostic and error messages for the IDE disk
authorNathan Binkert <binkertn@umich.edu>
Wed, 6 Apr 2005 21:47:32 +0000 (17:47 -0400)
committerNathan Binkert <binkertn@umich.edu>
Wed, 6 Apr 2005 21:47:32 +0000 (17:47 -0400)
dev/ide_disk.cc:
    Cleanup diagnostic and error messages

--HG--
extra : convert_revision : fb1bc6d9f28a10961c9d3ee1dc81b540b92653b8

dev/ide_disk.cc

index bfaf3d3aa4254ab63c4ef6be8f6a439084d9dfc3..213fc6a97e9eed9611508821e81de9a220c5add4 100644 (file)
@@ -336,7 +336,8 @@ IdeDisk::dmaPrdReadDone()
            physmem->dma_addr(curPrdAddr, sizeof(PrdEntry_t)),
            sizeof(PrdEntry_t));
 
-    DPRINTF(IdeDisk, "PRD: baseAddr:%#x (%#x) byteCount:%d (%d) eot:%#x sector:%d\n",
+    DPRINTF(IdeDisk,
+            "PRD: baseAddr:%#x (%#x) byteCount:%d (%d) eot:%#x sector:%d\n",
             curPrd.getBaseAddr(), pciToDma(curPrd.getBaseAddr()),
             curPrd.getByteCount(), (cmdBytesLeft/SectorSize),
             curPrd.getEOT(), curSector);
@@ -609,10 +610,10 @@ void
 IdeDisk::abortDma()
 {
     if (dmaState == Dma_Idle)
-        panic("Inconsistent DMA state, should be in Dma_Start or Dma_Transfer!\n");
+        panic("Inconsistent DMA state, should be Start or Transfer!");
 
     if (devState != Transfer_Data_Dma && devState != Prepare_Data_Dma)
-        panic("Inconsistent device state, should be in Transfer or Prepare!\n");
+        panic("Inconsistent device state, should be Transfer or Prepare!\n");
 
     updateState(ACT_CMD_ERROR);
 }
@@ -732,7 +733,7 @@ IdeDisk::startCommand()
 void
 IdeDisk::intrPost()
 {
-    DPRINTF(IdeDisk, "IDE Disk Posting Interrupt\n");
+    DPRINTF(IdeDisk, "Posting Interrupt\n");
     if (intrPending)
         panic("Attempt to post an interrupt with one pending\n");
 
@@ -746,7 +747,7 @@ IdeDisk::intrPost()
 void
 IdeDisk::intrClear()
 {
-    DPRINTF(IdeDisk, "IDE Disk Clearing Interrupt\n");
+    DPRINTF(IdeDisk, "Clearing Interrupt\n");
     if (!intrPending)
         panic("Attempt to clear a non-pending interrupt\n");