summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-08-19 13:27:58 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-08-19 13:27:58 +0000
commit3426ef6ab8dc13a0f1c306ab5d63e27664fb3e5c (patch)
tree78525e6b9821679dbf87c69dc56c8af7182e04c2 /flash.h
parent173e3eaabef842e3ad785f3c3c510bf4122deff9 (diff)
downloadast2050-flashrom-3426ef6ab8dc13a0f1c306ab5d63e27664fb3e5c.zip
ast2050-flashrom-3426ef6ab8dc13a0f1c306ab5d63e27664fb3e5c.tar.gz
If FT2232H SPI is not enabled, it should be compiled out completely
We can't remove ft2232_spi.o from unconditional OBJS yet due to our makefile structure (make features), but this patch adds #ifdefs around all FT2232H code, so the net effect is the same. Corresponding to flashrom svn r691. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stefan Reinauer <stepan@coresystems.de>
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/flash.h b/flash.h
index a571be7..c5234dc 100644
--- a/flash.h
+++ b/flash.h
@@ -86,7 +86,9 @@ enum programmer {
PROGRAMMER_NIC3COM,
PROGRAMMER_SATASII,
PROGRAMMER_IT87SPI,
+#if FT2232_SPI_SUPPORT == 1
PROGRAMMER_FT2232SPI,
+#endif
#if SERPROG_SUPPORT == 1
PROGRAMMER_SERPROG,
#endif
@@ -436,9 +438,13 @@ enum spi_controller {
SPI_CONTROLLER_SB600,
SPI_CONTROLLER_VIA,
SPI_CONTROLLER_WBSIO,
+#if FT2232_SPI_SUPPORT == 1
SPI_CONTROLLER_FT2232,
+#endif
SPI_CONTROLLER_DUMMY,
+ SPI_CONTROLLER_INVALID /* This must always be the last entry. */
};
+extern const int spi_programmer_count;
struct spi_command {
unsigned int writecnt;
unsigned int readcnt;
OpenPOWER on IntegriCloud