From 91a8ce7d80bd84f307659d2a9da2d320d91e2a7a Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Wed, 16 Jul 2003 07:04:58 +0000 Subject: - ldscripb.lb remove another $Id: line.. - romcc_io.h Add include guards. - hdama/Config nothing really but I have been moving the setting back and forth between 1 and 2 cpus - auto.c Changed the enabled debugging comments. This almost works with 2 cpus - coherent_ht.c First pass at getting this right. It can now find 2 cpus and place them in some semblance of a working state. - raminit.c Fix problems with 4GB of ram. Disable some of the debugging code. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@965 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/include/arch/romcc_io.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/arch') diff --git a/src/arch/i386/include/arch/romcc_io.h b/src/arch/i386/include/arch/romcc_io.h index f460a36f4d..f8618b0e76 100644 --- a/src/arch/i386/include/arch/romcc_io.h +++ b/src/arch/i386/include/arch/romcc_io.h @@ -1,3 +1,6 @@ +#ifndef ARCH_ROMCC_IO_H +#define ARCH_ROMCC_IO_H 1 + static void outb(unsigned char value, unsigned short port) { __builtin_outb(value, port); @@ -182,3 +185,4 @@ static device_t pci_locate_device(unsigned pci_id, device_t dev) return PCI_DEV_INVALID; } +#endif /* ARCH_ROMCC_IO_H */ -- cgit v1.2.3