Skip to content
Snippets Groups Projects
Commit 8781f3e9 authored by patacongo's avatar patacongo
Browse files

typos

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2137 42af7a65-404d-4744-a932-0658087f49c3
parent a9e91d9a
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@
*
****************************************************************************/
#define SPI_SETMODE(d,m) ((d)->ops->mode ? (d)->ops->mode(d,m) : (void))
#define SPI_SETMODE(d,m) ((d)->ops->setmode ? (d)->ops->setmode(d,m) : (void))
/****************************************************************************
* Name: SPI_SETBITS
......@@ -222,7 +222,7 @@
*
* Input Parameters:
* dev - Device-specific state data
* buffer - A pointer to the buffer of data to be sent
* txbuffer - A pointer to the buffer of data to be sent
* rxbuffer - A pointer to the buffer in which to recieve data
* nwords - the length of data that to be exchanged in units of words.
* The wordsize is determined by the number of bits-per-word
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment