mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
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>
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user