Changeset 5e77d129 in rtems for c/src/lib/libcpu/powerpc/mpc8xx
- Timestamp:
- Jun 14, 2000, 8:32:44 PM (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b91b1cf
- Parents:
- 9b05600
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/powerpc/mpc8xx/console-generic/console-generic.c
r9b05600 r5e77d129 400 400 /* Check that the buffer is ours */ 401 401 if ((RxBd[SCC2_MINOR]->status & M8xx_BD_EMPTY) == 0) { 402 rtems_ invalidate_multiple_data_cache_lines(402 rtems_cache_invalidate_multiple_data_lines( 403 403 (const void *) RxBd[SCC2_MINOR]->buffer, 404 404 RxBd[SCC2_MINOR]->length ); … … 443 443 /* Check that the buffer is ours */ 444 444 if ((RxBd[SCC3_MINOR]->status & M8xx_BD_EMPTY) == 0) { 445 rtems_ invalidate_multiple_data_cache_lines(445 rtems_cache_invalidate_multiple_data_lines( 446 446 (const void *) RxBd[SCC3_MINOR]->buffer, 447 447 RxBd[SCC3_MINOR]->length ); … … 485 485 /* Check that the buffer is ours */ 486 486 if ((RxBd[SCC4_MINOR]->status & M8xx_BD_EMPTY) == 0) { 487 rtems_ invalidate_multiple_data_cache_lines(487 rtems_cache_invalidate_multiple_data_lines( 488 488 (const void *) RxBd[SCC4_MINOR]->buffer, 489 489 RxBd[SCC4_MINOR]->length ); … … 527 527 /* Check that the buffer is ours */ 528 528 if ((RxBd[SMC1_MINOR]->status & M8xx_BD_EMPTY) == 0) { 529 rtems_ invalidate_multiple_data_cache_lines(529 rtems_cache_invalidate_multiple_data_lines( 530 530 (const void *) RxBd[SMC1_MINOR]->buffer, 531 531 RxBd[SMC1_MINOR]->length ); … … 569 569 /* Check that the buffer is ours */ 570 570 if ((RxBd[SMC2_MINOR]->status & M8xx_BD_EMPTY) == 0) { 571 rtems_ invalidate_multiple_data_cache_lines(571 rtems_cache_invalidate_multiple_data_lines( 572 572 (const void *) RxBd[SMC2_MINOR]->buffer, 573 573 RxBd[SMC2_MINOR]->length ); … … 985 985 return -1; 986 986 } 987 rtems_ invalidate_multiple_data_cache_lines(987 rtems_cache_invalidate_multiple_data_lines( 988 988 (const void *) RxBd[minor]->buffer, 989 989 RxBd[minor]->length … … 1005 1005 ) 1006 1006 { 1007 rtems_ flush_multiple_data_cache_lines( buf, len );1007 rtems_cache_flush_multiple_data_lines( buf, len ); 1008 1008 TxBd[minor]->buffer = (char *) buf; 1009 1009 TxBd[minor]->length = len; … … 1024 1024 continue; 1025 1025 txBuf[minor] = *buf++; 1026 rtems_ flush_multiple_data_cache_lines(1026 rtems_cache_flush_multiple_data_lines( 1027 1027 (const void *) TxBd[minor]->buffer, 1028 1028 TxBd[minor]->length
Note: See TracChangeset
for help on using the changeset viewer.