1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 22:43:17 +02:00

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>
This commit is contained in:
Thomas Heijligen
2021-09-21 10:00:14 +02:00
committed by Nico Huber
parent cce29a4855
commit 95f39b0098
18 changed files with 0 additions and 83 deletions

View File

@ -20,8 +20,6 @@
* Contains the ITE IT85* SPI specific routines
*/
#if defined(__i386__) || defined(__x86_64__)
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
@ -362,5 +360,3 @@ int it85xx_spi_init(struct superio s)
/* Set this as SPI controller. */
return register_spi_master(&spi_master_it85xx, data);
}
#endif