siemens/sitemp_g1p1: Drop debug code
Change-Id: I40a4201b468131ba67e48ab68d62ca5413f2e2e8 Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/1000 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
2e2a68bbc8
commit
872eb79393
|
@ -661,34 +661,6 @@ static void patch_mmio_nonposted( void )
|
|||
* @param
|
||||
*/
|
||||
|
||||
static void wait_pepp( void ) {
|
||||
|
||||
int boot_delay = 0;
|
||||
|
||||
if( get_option(&boot_delay, "boot_delay") < 0)
|
||||
boot_delay = 5;
|
||||
|
||||
printk(BIOS_DEBUG, "boot_delay = %d sec\n", boot_delay);
|
||||
if ( boot_delay > 0 ) {
|
||||
init_timer();
|
||||
// wait for PEPP-Board
|
||||
printk(BIOS_INFO, "Give PEPP-Board %d sec(s) time to coming up ", boot_delay);
|
||||
while ( boot_delay ) {
|
||||
lapic_write(LAPIC_TMICT, 0xffffffff);
|
||||
udelay(1000000); // delay time approx. 1 sec
|
||||
printk(BIOS_INFO, ".");
|
||||
boot_delay--;
|
||||
}
|
||||
printk(BIOS_INFO, "\n");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief
|
||||
*
|
||||
* @param
|
||||
*/
|
||||
|
||||
struct {
|
||||
unsigned int bus;
|
||||
unsigned int devfn;
|
||||
|
@ -926,7 +898,6 @@ static void enable_dev(device_t dev)
|
|||
uma_memory_base = 0;
|
||||
#endif
|
||||
|
||||
wait_pepp();
|
||||
dev->ops->init = init; // rest of mainboard init later
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue