Ignore:
Timestamp:
Feb 15, 2011, 1:18:21 PM (14 years ago)
Author:
chris
Message:
  • Added minimum NCQ depth for SATA devices which don't support NCQ at all
  • Removed ATAPI devices from the flush cache queue as they caused timeouts with a DVD drive in an HP test box
  • Various cosmetic changes to debug levels, etc.
File:
1 edited

Legend:

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

    r69 r71  
    5353int atapi_unit_ready(IORBH _far *iorb, int slot)
    5454{
    55   dprintf("atapi_unit_ready called\n");
     55  ddprintf("atapi_unit_ready called\n");
    5656  iorb_seterr(iorb, IOERR_CMD_NOT_SUPPORTED);
    5757  return(-1);
     
    123123int atapi_verify(IORBH _far *iorb, int slot)
    124124{
    125   dprintf("atapi_verify called\n");
     125  ddprintf("atapi_verify called\n");
    126126  iorb_seterr(iorb, IOERR_CMD_NOT_SUPPORTED);
    127127  return(-1);
     
    133133int atapi_write(IORBH _far *iorb, int slot)
    134134{
    135   dprintf("atapi_write called\n");
     135  ddprintf("atapi_write called\n");
    136136  iorb_seterr(iorb, IOERR_CMD_NOT_SUPPORTED);
    137137  return(-1);
     
    241241  ATAPI_SENSE_DATA *psd = (ATAPI_SENSE_DATA *) aws->buf;
    242242
    243   ddphex(psd, sizeof(psd), "sense buffer:\n");
     243  dphex(psd, sizeof(psd), "sense buffer:\n");
    244244
    245245  /* map sense data to some IOERR_ value */
Note: See TracChangeset for help on using the changeset viewer.