Fixed typo 'WirtePageWithLayout' in uffs

WirtePageWithLayout ->WritePageWithLayout
This commit is contained in:
David Lin 2020-02-21 21:37:05 +08:00 committed by GitHub
parent 3790384734
commit ec20c2c7ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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()
};