summaryrefslogtreecommitdiffstats
path: root/mtdutils/bml_over_mtd.c
diff options
context:
space:
mode:
authorKra1o5 <kra1o5x@gmail.com>2014-06-20 19:06:06 +0200
committerGerrit Code Review <gerrit2@gerrit>2014-06-30 19:02:47 +0200
commit3167936cf0ed5ca3ebbdbfba8b63b2905c506633 (patch)
tree69e22e13db687041a9a999d11440da8834a340eb /mtdutils/bml_over_mtd.c
parenton stock android, pthread_cancel and phtread_setcancelstate doesn't exist (diff)
downloadandroid_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.tar
android_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.tar.gz
android_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.tar.bz2
android_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.tar.lz
android_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.tar.xz
android_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.tar.zst
android_bootable_recovery-3167936cf0ed5ca3ebbdbfba8b63b2905c506633.zip
Diffstat (limited to 'mtdutils/bml_over_mtd.c')
-rw-r--r--mtdutils/bml_over_mtd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mtdutils/bml_over_mtd.c b/mtdutils/bml_over_mtd.c
index a68950e40..12ca10915 100644
--- a/mtdutils/bml_over_mtd.c
+++ b/mtdutils/bml_over_mtd.c
@@ -31,8 +31,8 @@
#include "mtdutils.h"
-#ifdef RK3066
- #include "rk30hack.h"
+#ifdef RK3X
+ #include "rk3xhack.h"
#endif
typedef struct BmlOverMtdReadContext {
@@ -522,7 +522,7 @@ static ssize_t bml_over_mtd_write_block(int fd, ssize_t erase_size, char* data)
erase_info.length = size;
int retry;
for (retry = 0; retry < 2; ++retry) {
-#ifdef RK3066
+#ifdef RK3X
if (rk30_zero_out(fd, pos, size) < 0) {
fprintf(stderr, "mtd: erase failure at 0x%08lx (%s)\n",
pos, strerror(errno));