| 618 | } |
| 619 | |
| 620 | static copy_mode_t |
| 621 | dma_parse_copy_mode(const char *copy_mode) |
| 622 | { |
| 623 | if (strcmp(copy_mode, COPY_MODE_SW) == 0) |
| 624 | return COPY_MODE_SW_NUM; |
| 625 | else if (strcmp(copy_mode, COPY_MODE_DMA) == 0) |
| 626 | return COPY_MODE_DMA_NUM; |
| 627 | |
| 628 | return COPY_MODE_INVALID_NUM; |
| 629 | } |
| 630 | |
| 631 | /* Parse the argument given in the command line of the application */ |
| 632 | static int |
no test coverage detected