Fix another ENC28J60 chip select bug

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5163 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-09-18 23:06:22 +00:00
parent 2443a4f553
commit 78b298ffad
2 changed files with 88 additions and 8 deletions
+2 -2
View File
@@ -842,7 +842,7 @@ static ssize_t recvfrom_result(int result, struct recvfrom_s *pstate)
if (pstate->rf_result < 0)
{
/* This might return EGAIN on a timeout or ENOTCONN on loss of
/* This might return EAGAIN on a timeout or ENOTCONN on loss of
* connection (TCP only)
*/
@@ -1061,7 +1061,7 @@ static ssize_t tcp_recvfrom(FAR struct socket *psock, FAR void *buf, size_t len,
if (_SS_ISNONBLOCK(psock->s_flags))
{
/* Return the number of bytes read from the read-ahead buffer if
* something was received (already in 'ret'); EGAIN if not.
* something was received (already in 'ret'); EAGAIN if not.
*/
if (ret <= 0)