Browse Source

Fixed typo 'WirtePageWithLayout' in uffs

WirtePageWithLayout ->WritePageWithLayout
David Lin 5 years ago
parent
commit
3790384734
1 changed files with 7 additions and 7 deletions
  1. 7 7
      components/dfs/filesystems/uffs/src/emu/uffs_fileem_ecc_hw_auto.c

+ 7 - 7
components/dfs/filesystems/uffs/src/emu/uffs_fileem_ecc_hw_auto.c

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