Merge pull request #3396 from DavidLin1577/patch-10

Fixed typo 'WirtePageWithLayout' in uffs
This commit is contained in:
Bernard Xiong 2020-02-22 13:25:04 +08:00 committed by GitHub
commit 1c3a482ca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 15 deletions

View File

@ -349,7 +349,7 @@ uffs_FlashOps g_femu_ops_ecc_hw_auto = {
NULL, // ReadPage()
femu_hw_auto_ReadPageWithLayout, // ReadPageWithLayout()
NULL, // WritePage()
femu_hw_auto_WritePageWithLayout, // WirtePageWithLayout()
femu_hw_auto_WritePageWithLayout, // WritePageWithLayout()
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
femu_EraseBlock, // EraseBlock()

View File

@ -205,7 +205,7 @@ uffs_FlashOps g_femu_ops_ecc_soft = {
femu_ReadPage, // ReadPage()
NULL, // ReadPageWithLayout
femu_WritePage, // WritePage()
NULL, // WirtePageWithLayout
NULL, // WritePageWithLayout
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
femu_EraseBlock, // EraseBlock()

View File

@ -294,7 +294,7 @@ static uffs_FlashOps g_my_nand_ops = {
nand_read_page, // ReadPage()
NULL, // ReadPageWithLayout
nand_write_page, // WritePage()
NULL, // WirtePageWithLayout
NULL, // WritePageWithLayout
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
nand_erase_block, // EraseBlock()