diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-07-16 07:04:58 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-07-16 07:04:58 +0000 |
commit | 91a8ce7d80bd84f307659d2a9da2d320d91e2a7a (patch) | |
tree | 50604f3524f23ecee4d9421ebe081f1c424a5944 /src/arch | |
parent | 61b29a9b7227fedea5e53cd0456849d5f20be79b (diff) |
- 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
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/include/arch/romcc_io.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 */ |