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/ahci.c

    r193 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
     
    631631    {
    632632      /* we have a valid IDENTIFY or IDENTIFY_PACKET response */
    633       DHEXDUMP(2,id_buf, ATA_ID_WORDS * sizeof(u16), "ATA_IDENTIFY%s results:\n", (is_ata) ? "" : "_PACKET");
     633      DHEXDUMP(5,id_buf, ATA_ID_WORDS * sizeof(u16), "ATA_IDENTIFY%s results:\n", (is_ata) ? "" : "_PACKET");
    634634      ahci_setup_device(ai, p, 0, id_buf);
    635635    }
     
    17341734  int d = iorb_unit_device(pIorb);
    17351735
    1736   DHEXDUMP(0,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd),
     1736  DHEXDUMP(5,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd),
    17371737        ((IORB_ADAPTER_PASSTHRU *)pIorb)->ControllerCmdLen,
    17381738        "ahci_execute_cdb(%d.%d.%d): ", a, p, d);
     
    17601760  int d = iorb_unit_device(pIorb);
    17611761
    1762   DHEXDUMP(0,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd),
     1762  DHEXDUMP(5,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd),
    17631763        ((IORB_ADAPTER_PASSTHRU *)pIorb)->ControllerCmdLen,
    17641764        "ahci_execute_ata(%d.%d.%d): ", a, p, d);
Note: See TracChangeset for help on using the changeset viewer.