freemyipod r206 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r205‎ | r206 | r207 >
Date:11:27, 7 September 2010
Author:theseven
Status:new
Tags:
Comment:
Make ftl_sync return success if the FTL wasn't even mounted and release emBIOS 0.1.2
Modified paths:
  • /embios/trunk/target/ipodnano2g/ftl.c (modified) (history)
  • /embios/trunk/version.h (modified) (history)

Diff [purge]

Index: embios/trunk/target/ipodnano2g/ftl.c
@@ -2161,7 +2161,7 @@
21622162 uint32_t rc = 0;
21632163 uint32_t ppb = ftl_nand_type->pagesperblock * ftl_banks;
21642164
2165 - if (!ftl_initialized) return 1;
 2165+ if (!ftl_initialized) return 0;
21662166
21672167 if (ftl_cxt.clean_flag == 1) return 0;
21682168
Index: embios/trunk/version.h
@@ -25,10 +25,10 @@
2626 #define __VERSION_H__
2727
2828
29 -#define VERSION "0.1.1"
 29+#define VERSION "0.1.2"
3030 #define VERSION_MAJOR 0
3131 #define VERSION_MINOR 1
32 -#define VERSION_PATCH 1
 32+#define VERSION_PATCH 2
3333 #define VERSION_SVN "$REVISION$"
3434 #define VERSION_SVN_INT $REVISIONINT$
3535