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:
Myles Watson 2009-02-12 19:41:05 +00:00
commit 52e3eecb8a
3 changed files with 3 additions and 3 deletions

View file

@ -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();
}

View file

@ -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 */

View file

@ -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");
}