summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/i82801ax
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-03-28 15:11:56 +0000
committerStefan Reinauer <stepan@openbios.org>2010-03-28 15:11:56 +0000
commit83a1dd850b9f61929a2db17a9429d3d193e34bfb (patch)
treec3f0ab1329b7a882fccf8553842961f57b556c1b /src/southbridge/intel/i82801ax
parentf733d4754438f7289dd84d19871c7fe0a322801e (diff)
downloadcoreboot-83a1dd850b9f61929a2db17a9429d3d193e34bfb.tar.gz
coreboot-83a1dd850b9f61929a2db17a9429d3d193e34bfb.tar.bz2
coreboot-83a1dd850b9f61929a2db17a9429d3d193e34bfb.zip
drop __ROMCC__ define checks.. __PRE_RAM__ is what the code should be looking for.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5306 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/i82801ax')
-rw-r--r--src/southbridge/intel/i82801ax/i82801ax.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801ax/i82801ax.h b/src/southbridge/intel/i82801ax/i82801ax.h
index 7df86d2f2316..2ead33f02a41 100644
--- a/src/southbridge/intel/i82801ax/i82801ax.h
+++ b/src/southbridge/intel/i82801ax/i82801ax.h
@@ -21,7 +21,7 @@
#ifndef SOUTHBRIDGE_INTEL_I82801AX_I82801AX_H
#define SOUTHBRIDGE_INTEL_I82801AX_I82801AX_H
-#if !defined( __ROMCC__ ) && !defined(__PRE_RAM__)
+#if !defined(__PRE_RAM__)
#include "chip.h"
extern void i82801ax_enable(device_t dev);
#endif