Remove useless udelay() duplication.

Abuild-tested for the boards that are touched.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Peter Stuge <peter@stuge.se>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4760 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann
2009-10-11 18:21:45 +00:00
parent c0528d61df
commit 4d7ec68856
11 changed files with 5 additions and 95 deletions

View File

@@ -38,18 +38,9 @@
#define SERIAL_DEV PNP_DEV(0x2e, LPC47B272_SP1)
#include "southbridge/intel/i82801xx/i82801xx_early_smbus.c"
/* TODO: Not needed? */
void udelay(int usecs)
{
int i;
for (i = 0; i < usecs; i++)
outb(i&0xff, 0x80);
}
#include "lib/debug.c"
#include "pc80/udelay_io.c"
#include "lib/delay.c"
#include "northbridge/intel/i82810/raminit.c"
#include "northbridge/intel/i82810/debug.c"

View File

@@ -42,13 +42,6 @@
#define RECVENA_CONFIG 0x0808090a
#define RECVENB_CONFIG 0x0808090a
//void udelay(int usecs)
//{
// int i;
// for(i = 0; i < usecs; i++)
// outb(i&0xff, 0x80);
//}
#if 0
static void hard_reset(void)
{

View File

@@ -11,16 +11,7 @@
#include "pc80/mc146818rtc_early.c"
#include "pc80/serial.c"
#include "arch/i386/lib/console.c"
/*
*/
void udelay(int usecs)
{
int i;
for(i = 0; i < usecs; i++)
outb(i&0xff, 0x80);
}
#include "pc80/udelay_io.c"
#include "lib/delay.c"
#include "cpu/x86/lapic/boot_cpu.c"

View File

@@ -7,15 +7,6 @@
#include <console/console.h>
#include <cbfs.h>
/*
*/
void udelay(int usecs)
{
int i;
for(i = 0; i < usecs; i++)
outb(i&0xff, 0x80);
}
void main(void)
{
int i;
@@ -26,5 +17,4 @@ void main(void)
uart_init();
start_address = cbfs_load_stage("fallback/coreboot_ram");
start_address();
}

View File

@@ -43,13 +43,6 @@
#define RECVENA_CONFIG 0x0808090a
#define RECVENB_CONFIG 0x0808090a
//void udelay(int usecs)
//{
// int i;
// for(i = 0; i < usecs; i++)
// outb(i&0xff, 0x80);
//}
#if 0
static void hard_reset(void)
{

View File

@@ -43,13 +43,6 @@
#define RECVENA_CONFIG 0x0708090a
#define RECVENB_CONFIG 0x0708090a
//void udelay(int usecs)
//{
// int i;
// for(i = 0; i < usecs; i++)
// outb(i&0xff, 0x80);
//}
#if 0
static void hard_reset(void)
{

View File

@@ -43,13 +43,6 @@
#define RECVENA_CONFIG 0x0708090a
#define RECVENB_CONFIG 0x0708090a
//void udelay(int usecs)
//{
// int i;
// for(i = 0; i < usecs; i++)
// outb(i&0xff, 0x80);
//}
#if 0
static void hard_reset(void)
{

View File

@@ -44,13 +44,6 @@
#define RECVENA_CONFIG 0x0808090a
#define RECVENB_CONFIG 0x0808090a
//void udelay(int usecs)
//{
// int i;
// for(i = 0; i < usecs; i++)
// outb(i&0xff, 0x80);
//}
#if 0
static void hard_reset(void)
{

View File

@@ -44,13 +44,6 @@
#define RECVENA_CONFIG 0x0808090a
#define RECVENB_CONFIG 0x0808090a
//void udelay(int usecs)
//{
// int i;
// for(i = 0; i < usecs; i++)
// outb(i&0xff, 0x80);
//}
#if 0
static void hard_reset(void)
{

View File

@@ -17,23 +17,13 @@
#include "northbridge/via/vt8623/raminit.h"
#include "cpu/x86/mtrr/earlymtrr.c"
#include "cpu/x86/bist.h"
/*
*/
void udelay(unsigned usecs)
{
int i;
for(i = 0; i < usecs; i++)
outb(i&0xff, 0x80);
}
#include "pc80/udelay_io.c"
#include "lib/delay.c"
#include "cpu/x86/lapic/boot_cpu.c"
#include "lib/debug.c"
#include "southbridge/via/vt8235/vt8235_early_smbus.c"
#include "southbridge/via/vt8235/vt8235_early_serial.c"
static void memreset_setup(void)
{
}

View File

@@ -13,20 +13,10 @@
#include "northbridge/via/vt8601/raminit.h"
#include "cpu/x86/mtrr/earlymtrr.c"
#include "cpu/x86/bist.h"
/*
*/
void udelay(unsigned usecs)
{
int i;
for (i = 0; i < usecs; i++)
outb(i&0xff, 0x80);
}
#include "pc80/udelay_io.c"
#include "lib/delay.c"
#include "cpu/x86/lapic/boot_cpu.c"
#include "lib/debug.c"
#include "southbridge/via/vt8231/vt8231_early_smbus.c"
#include "southbridge/via/vt8231/vt8231_early_serial.c"