summaryrefslogtreecommitdiffstats
path: root/rayer_spi.c
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.de>2021-09-21 10:00:14 +0200
committerNico Huber <nico.h@gmx.de>2021-09-26 13:00:26 +0000
commit95f39b0098783704f2425e118897da5315ccb2ee (patch)
tree0a3dd647b427203405d5c2a41da52d3321a5cde2 /rayer_spi.c
parentcce29a485552052ce922ed1354c26674884a7857 (diff)
downloadflashrom-95f39b0098783704f2425e118897da5315ccb2ee.tar.gz
flashrom-95f39b0098783704f2425e118897da5315ccb2ee.tar.bz2
flashrom-95f39b0098783704f2425e118897da5315ccb2ee.zip
remove compile guards
The build system handles the decision when to build a file. Extra compile guards for the source files are not necessary. Change-Id: I76a76e05c7a7dd27637325ab1e9d8946fd5f9076 Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/57797 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'rayer_spi.c')
-rw-r--r--rayer_spi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/rayer_spi.c b/rayer_spi.c
index 1102ff158..e65eb78d0 100644
--- a/rayer_spi.c
+++ b/rayer_spi.c
@@ -22,7 +22,6 @@
* most OS parport drivers will perform many unnecessary accesses although
* this driver just treats the parallel port as a GPIO set.
*/
-#if defined(__i386__) || defined(__x86_64__)
#include <stdlib.h>
#include <strings.h>
@@ -334,7 +333,3 @@ const struct programmer_entry programmer_rayer_spi = {
.unmap_flash_region = fallback_unmap,
.delay = internal_delay,
};
-
-#else
-#error PCI port I/O access is not supported on this architecture yet.
-#endif