drkaiser: remove unused rget_io_perms()

The drkaiser programmer does not use x86 IO Ports. Remove the dependency
to it.

Change-Id: I86bad947298a1166ff1e768f7d0b75a90e574696
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com>
Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/60842
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/+/72270
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/Makefile b/Makefile
index 5be77b7..ae0a8ae 100644
--- a/Makefile
+++ b/Makefile
@@ -127,7 +127,6 @@
 DEPENDS_ON_X86_PORT_IO := \
 	CONFIG_ATAHPT \
 	CONFIG_ATAPROMISE \
-	CONFIG_DRKAISER \
 	CONFIG_GFXNVIDIA \
 	CONFIG_INTERNAL \
 	CONFIG_NIC3COM \
diff --git a/drkaiser.c b/drkaiser.c
index a0133c6..6c0cc3a 100644
--- a/drkaiser.c
+++ b/drkaiser.c
@@ -18,7 +18,6 @@
 #include "flash.h"
 #include "programmer.h"
 #include "hwaccess.h"
-#include "hwaccess_x86_io.h"
 #include "hwaccess_physmap.h"
 #include "platform/pci.h"
 
@@ -60,9 +59,6 @@
 	struct pci_dev *dev = NULL;
 	uint32_t addr;
 
-	if (rget_io_perms())
-		return 1;
-
 	dev = pcidev_init(drkaiser_pcidev, PCI_BASE_ADDRESS_2);
 	if (!dev)
 		return 1;