Changeset 612 for soft/giet_vm/giet_drivers/cma_driver.c
- Timestamp:
- Jul 15, 2015, 6:13:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_drivers/cma_driver.c
r506 r612 52 52 _puts("impossible access to source chbuf descriptor\n"); 53 53 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"); 56 56 57 57 else if (status == CHANNEL_DST_DESC_ERROR ) 58 58 _puts("impossible access to destination chbuf descriptor\n"); 59 59 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"); 62 65 63 66 else
Note: See TracChangeset
for help on using the changeset viewer.