summaryrefslogtreecommitdiffstats
path: root/common/flash.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-02-11 22:43:55 +0900
committerTom Rini <trini@konsulko.com>2017-02-12 14:30:31 -0500
commit554c73c0256c9e22af1b89e842a310b73b5eb657 (patch)
tree9c539305a39a0675d63fe31ad78c1d3f03e081df /common/flash.c
parente856bdcfb49291d30b19603fc101bea096c48196 (diff)
downloadu-boot-554c73c0256c9e22af1b89e842a310b73b5eb657.tar.gz
u-boot-554c73c0256c9e22af1b89e842a310b73b5eb657.tar.xz
u-boot-554c73c0256c9e22af1b89e842a310b73b5eb657.zip
flash: compile common/flash.c iif CONFIG_MTD_NO_FLASH is enabled
The whole of common/flash.c is guarded by #if defined() ... #endif. Move the conditional to common/Makefile. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'common/flash.c')
-rw-r--r--common/flash.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/common/flash.c b/common/flash.c
index 6d492c729f..587ef60158 100644
--- a/common/flash.c
+++ b/common/flash.c
@@ -10,7 +10,6 @@
#include <common.h>
#include <flash.h>
-#if defined(CONFIG_MTD_NOR_FLASH)
#include <mtd/cfi_flash.h>
extern flash_info_t flash_info[]; /* info for FLASH chips */
@@ -218,7 +217,3 @@ void flash_perror (int err)
break;
}
}
-
-/*-----------------------------------------------------------------------
- */
-#endif /* !CONFIG_MTD_NOR_FLASH */