summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2022-01-17 15:11:43 +0100
committerNico Huber <nico.h@gmx.de>2022-01-20 16:51:01 +0000
commit64b9e3f59e3d859e287884c294ad4180e5a5ef56 (patch)
tree51d7407a6a543bd7ff87f4fb97f7f7b58662ecea /Makefile
parent9aaa66cc7fd6a93fd90b5cc061f82c87365b0caa (diff)
downloadflashrom-64b9e3f59e3d859e287884c294ad4180e5a5ef56.tar.gz
flashrom-64b9e3f59e3d859e287884c294ad4180e5a5ef56.tar.bz2
flashrom-64b9e3f59e3d859e287884c294ad4180e5a5ef56.zip
hwaccess: move mmio functions into hwaccess_physmap
The mmio_le/be_read/writex functions are used for raw memory access. Bundle them with the physmap functions. Change-Id: I313062b078e89630c703038866ac93c651f0f49a Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/61160 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b8287a909..6e2e33ff6 100644
--- a/Makefile
+++ b/Makefile
@@ -833,7 +833,7 @@ endif
ifneq ($(NEED_RAW_ACCESS), )
# Raw memory, MSR or PCI port I/O access.
FEATURE_CFLAGS += -D'NEED_RAW_ACCESS=1'
-PROGRAMMER_OBJS += hwaccess.o hwaccess_physmap.o
+PROGRAMMER_OBJS += hwaccess_physmap.o
ifeq ($(ARCH), x86)
FEATURE_CFLAGS += -D'__FLASHROM_HAVE_OUTB__=1'