Ignore:
Timestamp:
Jul 15, 2015, 6:13:17 PM (9 years ago)
Author:
bellefin
Message:

CMA driver: update the channel status values of the CMA component

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_drivers/cma_driver.c

    r506 r612  
    5252        _puts("impossible access to source chbuf descriptor\n");
    5353
    54     else if (status == CHANNEL_SRC_DATA_ERROR )
    55         _puts("impossible access to source data buffer\n");
     54    else if (status == CHANNEL_SRC_STATUS_ERROR )
     55        _puts("impossible access to source buffer status\n");
    5656
    5757    else if (status == CHANNEL_DST_DESC_ERROR )
    5858        _puts("impossible access to destination chbuf descriptor\n");
    5959
    60     else if (status == CHANNEL_DST_DATA_ERROR )
    61         _puts("impossible access to destination data buffer\n");
     60    else if (status == CHANNEL_DST_STATUS_ERROR )
     61        _puts("impossible access to destination buffer status\n");
     62
     63    else if (status == CHANNEL_DATA_ERROR )
     64        _puts("impossible access to source or destination data buffer\n");
    6265
    6366    else
Note: See TracChangeset for help on using the changeset viewer.