Drop \r\n and \n\r as both print_XXX and printk now do this internally.
[coreboot.git] / src / mainboard / intel / jarrell / power_reset_check.c
1
2 static void power_down_reset_check(void)
3 {
4         uint8_t cmos;
5
6         cmos=cmos_read(RTC_BOOT_BYTE)>>4 ;
7         print_debug("Boot byte = ");
8         print_debug_hex8(cmos);
9         print_debug("\n");
10
11         if((cmos>2)&&(cmos&1))  full_reset();
12 }