Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libblock/libblock.c

    r16fc3c9 r64bc4b6  
    5252#include <macros.h>
    5353#include <mem.h>
    54 #include <sys/typefmt.h>
    55 #include <stacktrace.h>
    5654
    5755/** Lock protecting the device connection list */
     
    815813        rc = async_req_3_0(devcon->dev_phone, BD_READ_BLOCKS, LOWER32(ba),
    816814            UPPER32(ba), cnt);
    817         if (rc != EOK) {
    818                 printf("Error %d reading %d blocks starting at block %" PRIuBN
    819                     " from device handle %d\n", rc, cnt, ba,
    820                     devcon->dev_handle);
    821 #ifndef NDEBUG
    822                 stacktrace_print();
    823 #endif
    824         }
    825815        return rc;
    826816}
     
    842832        rc = async_req_3_0(devcon->dev_phone, BD_WRITE_BLOCKS, LOWER32(ba),
    843833            UPPER32(ba), cnt);
    844         if (rc != EOK) {
    845                 printf("Error %d writing %d blocks starting at block %" PRIuBN
    846                     " to device handle %d\n", rc, cnt, ba, devcon->dev_handle);
    847 #ifndef NDEBUG
    848                 stacktrace_print();
    849 #endif
    850         }
    851834        return rc;
    852835}
Note: See TracChangeset for help on using the changeset viewer.