summaryrefslogtreecommitdiffstats
path: root/src/include/rules.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-23 16:25:37 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-02-22 19:32:36 +0000
commitb92853ed5625c2b0cd8b43c361310ffb08c73ba4 (patch)
treeeaf7ca44a4a5db2fa31083e1f43c42adcef12223 /src/include/rules.h
parent26905f70b78854ab2e06e03be62e367fe8fb8404 (diff)
downloadcoreboot-b92853ed5625c2b0cd8b43c361310ffb08c73ba4.tar.gz
coreboot-b92853ed5625c2b0cd8b43c361310ffb08c73ba4.tar.bz2
coreboot-b92853ed5625c2b0cd8b43c361310ffb08c73ba4.zip
arch/arm64: Add PCI config support in romstage
Change-Id: I9cc3dc51764f24b986434080f480932dceb8d133 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/31307 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/include/rules.h')
-rw-r--r--src/include/rules.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/rules.h b/src/include/rules.h
index deea50b977fd..8fef53421d57 100644
--- a/src/include/rules.h
+++ b/src/include/rules.h
@@ -266,11 +266,9 @@
* For ramstage individual source file may define __SIMPLE_DEVICE__
* before including any header files to force that particular source
* be built with simple device model.
- *
- * For now only x86 is supported.
*/
-#if ENV_X86 && (defined(__PRE_RAM__) || ENV_SMM || ENV_POSTCAR)
+#if (defined(__PRE_RAM__) || ENV_SMM || ENV_POSTCAR)
#define __SIMPLE_DEVICE__
#endif