From cc1802db50df74aa850d444ba0d7f6854bb7abd6 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Wed, 6 Jan 2010 10:21:00 +0000 Subject: Move generic programmer function into newly introduced programmer.c Some programmers (most notably FT2232SPI) use fallback_* and noop_*, but those functions lived inside internal.c and were unavailable if no PCI-based programmers were compiled in. Move those functions to the new file programmer.c. Thanks to Patrick Georgi for finding this. Corresponding to flashrom svn r829. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Patrick Georgi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3ea2ed7..7adcb80 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ LIB_OBJS = layout.o CLI_OBJS = flashrom.o print.o -PROGRAMMER_OBJS = udelay.o +PROGRAMMER_OBJS = udelay.o programmer.o all: pciutils features dep $(PROGRAM) -- cgit v1.1