Fix compilation for CONFIG_INTERNAL=no
CONFIG_INTERNAL implies Super I/O support and NEED_PCI.
NEED_PCI is only used to guard PCI stuff which may be needed for
external PCI-based programmers. That way, using #if NEED_PCI can be
avoided inside #if CONFIG_INTERNAL.
Corresponding to flashrom svn r1326.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
diff --git a/buspirate_spi.c b/buspirate_spi.c
index 0a9e952..3ac0929 100644
--- a/buspirate_spi.c
+++ b/buspirate_spi.c
@@ -30,6 +30,11 @@
/* Change this to #define if you want to test without a serial implementation */
#undef FAKE_COMMUNICATION
+struct buspirate_spispeeds {
+ const char *name;
+ const int speed;
+};
+
#ifndef FAKE_COMMUNICATION
static int buspirate_serialport_setup(char *dev)
{