Fixed typo: 'wirte' in uffs_nandif.c
Note that the word 'wirte' is wrong, so that 'wirte' should been replaced with 'write'.
This commit is contained in:
parent
dd5178efdf
commit
8e19bec11b
|
@ -135,7 +135,7 @@ const uffs_FlashOps nand_ops =
|
||||||
nand_read_page, /* ReadPage() */
|
nand_read_page, /* ReadPage() */
|
||||||
NULL, /* ReadPageWithLayout */
|
NULL, /* ReadPageWithLayout */
|
||||||
nand_write_page, /* WritePage() */
|
nand_write_page, /* WritePage() */
|
||||||
NULL, /* WirtePageWithLayout */
|
NULL, /* WritePageWithLayout */
|
||||||
#if defined(RT_UFFS_USE_CHECK_MARK_FUNCITON)
|
#if defined(RT_UFFS_USE_CHECK_MARK_FUNCITON)
|
||||||
nand_check_block,
|
nand_check_block,
|
||||||
nand_mark_badblock,
|
nand_mark_badblock,
|
||||||
|
@ -302,7 +302,7 @@ const uffs_FlashOps nand_ops =
|
||||||
NULL, /* ReadPage() */
|
NULL, /* ReadPage() */
|
||||||
ReadPageWithLayout, /* ReadPageWithLayout */
|
ReadPageWithLayout, /* ReadPageWithLayout */
|
||||||
NULL, /* WritePage() */
|
NULL, /* WritePage() */
|
||||||
WritePageWithLayout,/* WirtePageWithLayout */
|
WritePageWithLayout,/* WritePageWithLayout */
|
||||||
|
|
||||||
#if defined(RT_UFFS_USE_CHECK_MARK_FUNCITON)
|
#if defined(RT_UFFS_USE_CHECK_MARK_FUNCITON)
|
||||||
nand_check_block,
|
nand_check_block,
|
||||||
|
|
Loading…
Reference in New Issue