Fix an error in FAT needed for interoperability with Windows when access first entry in root directory

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4093 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-11-15 22:37:14 +00:00
parent cdfc549cd4
commit 93d0aa3a6e
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@
/* Context switching system calls ***************************************************/
/* SYS call 0:
/* SYS call 1:
*
* void up_fullcontextrestore(uint32_t *restoreregs) __attribute__ ((noreturn));
*/
@ -157,7 +157,7 @@
#define up_fullcontextrestore(restoreregs) \
(void)sys_call1(SYS_restore_context, (uintptr_t)restoreregs)
/* SYS call 1:
/* SYS call 2:
*
* void up_switchcontext(uint32_t *saveregs, uint32_t *restoreregs);
*/