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>
Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/60846
Original-Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Original-Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/72274
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/Makefile b/Makefile
index 0841112..85c320b 100644
--- a/Makefile
+++ b/Makefile
@@ -129,7 +129,6 @@
 	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 616c161..e0b4e4e 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"
 
@@ -273,9 +272,6 @@
 {
 	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;