Convert \r\n to \n in v3.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Corey Osgood <corey.osgood@gmail.com> git-svn-id: svn://coreboot.org/repository/coreboot-v3@1130 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
f2872767a2
commit
52e3eecb8a
3 changed files with 3 additions and 3 deletions
|
|
@ -33,7 +33,7 @@ static void power_down_reset_check(void)
|
|||
u8 cmos;
|
||||
|
||||
cmos=cmos_read(RTC_BOOT_BYTE)>>4 ;
|
||||
printk(BIOS_DEBUG, "Boot byte = %x\r\n", cmos);
|
||||
printk(BIOS_DEBUG, "Boot byte = %x\n", cmos);
|
||||
|
||||
if((cmos>2)&&(cmos&1)) full_reset();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ void enable_smbus(void)
|
|||
|
||||
/* Clear any lingering errors, so transactions can run. */
|
||||
outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
|
||||
printk(BIOS_DEBUG, "SMBus controller enabled.\r\n");
|
||||
printk(BIOS_DEBUG, "SMBus controller enabled.\n");
|
||||
}
|
||||
|
||||
/* some prototypes are hand-declared since the include files are still a little too stage-2 oriented */
|
||||
|
|
|
|||
|
|
@ -54,5 +54,5 @@ void watchdog_off(void)
|
|||
outw(0x0008, base + 0x04);
|
||||
outw(0x0002, base + 0x06);
|
||||
|
||||
printk(BIOS_DEBUG, "ICH7 watchdog disabled\r\n");
|
||||
printk(BIOS_DEBUG, "ICH7 watchdog disabled\n");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue