From 4d7ec68856aa2c8aed6d84905e71d6f28900d52d Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 11 Oct 2009 18:21:45 +0000 Subject: Remove useless udelay() duplication. Abuild-tested for the boards that are touched. Signed-off-by: Uwe Hermann Acked-by: Peter Stuge git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4760 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/emulation/qemu-x86/rom.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/mainboard/emulation/qemu-x86/rom.c') diff --git a/src/mainboard/emulation/qemu-x86/rom.c b/src/mainboard/emulation/qemu-x86/rom.c index 65c2644599..de1b162fd4 100644 --- a/src/mainboard/emulation/qemu-x86/rom.c +++ b/src/mainboard/emulation/qemu-x86/rom.c @@ -7,15 +7,6 @@ #include #include -/* - */ -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(); - } -- cgit v1.2.3