summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2023-01-01 14:33:51 +1100
committerEdward O'Callaghan <quasisec@chromium.org>2023-02-04 04:09:04 +0000
commit195948a4675edd8674986b19f2036320eb8ba1c8 (patch)
tree863bf6e8d6ac66334f3b508d37f4ecd7a776c073 /Makefile
parentec6eaff2f8d5402c028668f12fbec6fdb9d8fb14 (diff)
downloadflashrom-195948a4675edd8674986b19f2036320eb8ba1c8.tar.gz
flashrom-195948a4675edd8674986b19f2036320eb8ba1c8.tar.bz2
flashrom-195948a4675edd8674986b19f2036320eb8ba1c8.zip
internal.c: Move sio register to own object
While super i/o is related to the internal programmer it isn't actually _the_ internal programmer. Move register logic to its own object consistent with other programmer types. Change-Id: I9a4c3e12bce5d22492c8d1b8f4a3f49d736dcf31 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/71577 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a7ab00be0..2ebd37051 100644
--- a/Makefile
+++ b/Makefile
@@ -584,7 +584,7 @@ ifeq ($(ARCH), x86)
ifeq ($(CONFIG_INTERNAL) $(CONFIG_INTERNAL_X86), yes yes)
FEATURE_FLAGS += -D'CONFIG_INTERNAL=1'
PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o \
- internal.o it87spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o \
+ internal.o it87spi.o sb600spi.o superio.o amd_imc.o wbsio_spi.o mcp6x_spi.o \
ichspi.o dmi.o known_boards.o
ACTIVE_PROGRAMMERS += internal
endif