summaryrefslogtreecommitdiff
path: root/src/mainboard/dell/s1850/failover.c
blob: 3cc2c3d487b3295a714905a038afc3e155cce120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define ASSEMBLY 1
#define __PRE_RAM__
#include <stdint.h>
#include <device/pci_def.h>
#include <device/pci_ids.h>
#include <arch/io.h>
#include <arch/romcc_io.h>
#include <cpu/x86/lapic.h>
#include "pc80/serial.c"
#include "arch/i386/lib/console.c"
#include "pc80/mc146818rtc_early.c"
#include "cpu/x86/lapic/boot_cpu.c"
#include "northbridge/intel/e7520/memory_initialized.c"

static unsigned long main(unsigned long bist)
{
	/* skip all this nonsense as we are not doing fallback yet */
	return bist;
}