소스 검색

Fixed typo 'WirtePageWithLayout' in uffs

WirtePageWithLayout ->WritePageWithLayout
David Lin 5 년 전
부모
커밋
ec20c2c7ff
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      components/dfs/filesystems/uffs/src/example/flash-interface-example.c

+ 4 - 4
components/dfs/filesystems/uffs/src/example/flash-interface-example.c

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