mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
Fix spelling typos (#1168)
* Fix spelling --------- Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com>
This commit is contained in:
parent
8225a7f554
commit
de276eb023
133 changed files with 218 additions and 218 deletions
|
@ -210,7 +210,7 @@
|
|||
/** \brief Set the next receive transfer descriptor */
|
||||
/**---------------------------------------------------------------------------- */
|
||||
__inline void AT91F_PDC_SetNextRx( AT91PS_PDC pPDC, /* \arg pointer to a PDC controller */
|
||||
char * address, /* \arg address to the next bloc to be received */
|
||||
char * address, /* \arg address to the next block to be received */
|
||||
unsigned int bytes ) /* \arg number of bytes to be received */
|
||||
{
|
||||
pPDC->PDC_RNPR = ( unsigned int ) address;
|
||||
|
@ -222,7 +222,7 @@
|
|||
/** \brief Set the next transmit transfer descriptor */
|
||||
/**---------------------------------------------------------------------------- */
|
||||
__inline void AT91F_PDC_SetNextTx( AT91PS_PDC pPDC, /* \arg pointer to a PDC controller */
|
||||
char * address, /* \arg address to the next bloc to be transmitted */
|
||||
char * address, /* \arg address to the next block to be transmitted */
|
||||
unsigned int bytes ) /* \arg number of bytes to be transmitted */
|
||||
{
|
||||
pPDC->PDC_TNPR = ( unsigned int ) address;
|
||||
|
@ -234,7 +234,7 @@
|
|||
/** \brief Set the receive transfer descriptor */
|
||||
/**---------------------------------------------------------------------------- */
|
||||
__inline void AT91F_PDC_SetRx( AT91PS_PDC pPDC, /* \arg pointer to a PDC controller */
|
||||
char * address, /* \arg address to the next bloc to be received */
|
||||
char * address, /* \arg address to the next block to be received */
|
||||
unsigned int bytes ) /* \arg number of bytes to be received */
|
||||
{
|
||||
pPDC->PDC_RPR = ( unsigned int ) address;
|
||||
|
@ -246,7 +246,7 @@
|
|||
/** \brief Set the transmit transfer descriptor */
|
||||
/**---------------------------------------------------------------------------- */
|
||||
__inline void AT91F_PDC_SetTx( AT91PS_PDC pPDC, /* \arg pointer to a PDC controller */
|
||||
char * address, /* \arg address to the next bloc to be transmitted */
|
||||
char * address, /* \arg address to the next block to be transmitted */
|
||||
unsigned int bytes ) /* \arg number of bytes to be transmitted */
|
||||
{
|
||||
pPDC->PDC_TPR = ( unsigned int ) address;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue