summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2022-01-06 14:56:21 +0100
committerNico Huber <nico.h@gmx.de>2022-01-10 12:17:40 +0000
commit180b046eb2b827d90241b13732385f95ed9a060f (patch)
tree83fef72df9ea6383d257f650894a165657edc37c
parent0c3bdd9fc6cf98f7599b5aa7bfd64ca975b946ee (diff)
downloadflashrom-180b046eb2b827d90241b13732385f95ed9a060f.tar.gz
flashrom-180b046eb2b827d90241b13732385f95ed9a060f.tar.bz2
flashrom-180b046eb2b827d90241b13732385f95ed9a060f.zip
nicintel_spi: remove unused rget_io_perms()
The nicintel_spi programmer does not use x86 IO Ports. Remove the dependency to it. Change-Id: I3e7451eceb1f01de21da934c9559dbf2f06e7e54 Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/60846 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--Makefile1
-rw-r--r--nicintel_spi.c4
2 files changed, 0 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 93fc65716..34d517eb5 100644
--- a/Makefile
+++ b/Makefile
@@ -128,7 +128,6 @@ DEPENDS_ON_X86_PORT_IO := \
CONFIG_ATAPROMISE \
CONFIG_INTERNAL \
CONFIG_NIC3COM \
- CONFIG_NICINTEL_SPI \
CONFIG_NICNATSEMI \
CONFIG_NICREALTEK \
CONFIG_OGP_SPI \
diff --git a/nicintel_spi.c b/nicintel_spi.c
index 852c042ea..004af66b8 100644
--- a/nicintel_spi.c
+++ b/nicintel_spi.c
@@ -35,7 +35,6 @@
#include "flash.h"
#include "programmer.h"
#include "hwaccess.h"
-#include "hwaccess_x86_io.h"
#include "hwaccess_physmap.h"
#include "platform/pci.h"
@@ -293,9 +292,6 @@ static int nicintel_spi_init(void)
{
struct pci_dev *dev = NULL;
- if (rget_io_perms())
- return 1;
-
dev = pcidev_init(nics_intel_spi, PCI_BASE_ADDRESS_0);
if (!dev)
return 1;