未验证 提交 1c3a482c 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #3396 from DavidLin1577/patch-10

Fixed typo 'WirtePageWithLayout' in uffs
......@@ -344,13 +344,13 @@ ext:
uffs_FlashOps g_femu_ops_ecc_hw_auto = {
femu_hw_auto_InitFlash, // InitFlash()
femu_ReleaseFlash, // ReleaseFlash()
NULL, // ReadPage()
femu_hw_auto_InitFlash, // InitFlash()
femu_ReleaseFlash, // ReleaseFlash()
NULL, // ReadPage()
femu_hw_auto_ReadPageWithLayout, // ReadPageWithLayout()
NULL, // WritePage()
femu_hw_auto_WritePageWithLayout, // WirtePageWithLayout()
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
NULL, // WritePage()
femu_hw_auto_WritePageWithLayout, // WritePageWithLayout()
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
femu_EraseBlock, // EraseBlock()
};
......@@ -203,10 +203,10 @@ uffs_FlashOps g_femu_ops_ecc_soft = {
femu_InitFlash, // InitFlash()
femu_ReleaseFlash, // ReleaseFlash()
femu_ReadPage, // ReadPage()
NULL, // ReadPageWithLayout
NULL, // ReadPageWithLayout
femu_WritePage, // WritePage()
NULL, // WirtePageWithLayout
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
NULL, // WritePageWithLayout
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
femu_EraseBlock, // EraseBlock()
};
......@@ -292,11 +292,11 @@ static uffs_FlashOps g_my_nand_ops = {
nand_init_flash, // InitFlash()
nand_release_flash, // ReleaseFlash()
nand_read_page, // ReadPage()
NULL, // ReadPageWithLayout
NULL, // ReadPageWithLayout
nand_write_page, // WritePage()
NULL, // WirtePageWithLayout
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
NULL, // WritePageWithLayout
NULL, // IsBadBlock(), let UFFS take care of it.
NULL, // MarkBadBlock(), let UFFS take care of it.
nand_erase_block, // EraseBlock()
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册