Ignore:
Timestamp:
May 19, 2018, 5:28:16 PM (7 years ago)
Author:
David Azarewicz
Message:

Changes to debug output for debug versions.
Removed interrupt requirement on init.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/ata.c

    r190 r196  
    44 * Copyright (c) 2011 thi.guten Software Development
    55 * Copyright (c) 2011 Mensys B.V.
    6  * Copyright (c) 2013-2016 David Azarewicz
     6 * Copyright (c) 2013-2018 David Azarewicz
    77 *
    88 * Authors: Christian Mueller, Markus Thielen
     
    287287
    288288  #ifdef DEBUG
    289   if ((D32g_DbgLevel >= 7) || (atapi_cmd != NULL))
     289  if ((D32g_DbgLevel >= 5) /*|| (atapi_cmd != NULL)*/)
    290290  {
    291291    DPRINTF(0,"ATA command for %d.%d.%d, slot %d:\n", ad_no(ai), p, d, slot);
     
    544544  if (rc) return 0;
    545545
    546   DHEXDUMP(3,pDLA, sizeof(DLA_Table_Sector), "DLA sector %d:\n", sector-1);
     546  DHEXDUMP(5,pDLA, sizeof(DLA_Table_Sector), "DLA sector %d:\n", sector-1);
    547547
    548548  if ((pDLA->DLA_Signature1 == DLA_TABLE_SIGNATURE1) && (pDLA->DLA_Signature2 == DLA_TABLE_SIGNATURE2)) {
     
    11611161                | ((u16) fis[13] << 8);
    11621162
    1163   DHEXDUMP(0,cmd, sizeof(*cmd), "ahci_execute_ata_pp(): cmd after completion:\n");
     1163  DHEXDUMP(5,cmd, sizeof(*cmd), "ahci_execute_ata_pp(): cmd after completion:\n");
    11641164
    11651165  /* signal completion to interrupt handler */
Note: See TracChangeset for help on using the changeset viewer.