From c422484b84cc7a251166792a367b0a8143a3d206 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Thu, 9 Jun 2011 20:06:34 +0000 Subject: 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 Acked-by: Michael Karcher --- buspirate_spi.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'buspirate_spi.c') 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) { -- cgit v1.1